﻿* {
    font-family: -apple-system, BlinkMacSystemFont, "San Francisco", Helvetica, Arial, sans-serif;
    font-weight: 300;
    margin: 0;
}

html, body {
    height: 100vh; /* Yüksekliği %100'e çekildi */
    width: 100vw; /* Genişliği %100'e çekildi */
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f2f2;
}

.session {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px
    /*height: 100%;*/
    background: #f3f2f2;
}

.text-center {
    text-align: center;
}

.text-danger {
    color: #ff3333;
}

.verify-email-container {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 600px; /* Uygun genişlik sınırı */
    width: 100%;
    transition: transform 0.3s;
}

    .verify-email-container:hover {
        transform: scale(1.02);
    }

    .verify-email-container h2 {
        color: #333;
        margin-bottom: 1rem;
    }

    .verify-email-container input {
        margin-bottom: 1rem;
        padding: 0.8rem;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 1rem;
        width: 100%;
        transition: border-color 0.3s;
    }

        .verify-email-container input:focus {
            border-color: #6c63ff;
            outline: none;
        }

.btn-success {
    background-color: #6c63ff;
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .btn-success:hover {
        background-color: #5a52d4;
    }

a.text-decoration-none {
    color: #6c63ff;
    transition: color 0.3s;
}

    a.text-decoration-none:hover {
        color: #5a52d4;
    }
