/* Genel Konteyner Stili */
.registration-container {
    max-width: 450px;
    margin: 0 auto;
    text-align: left;
    padding: 20px;
}

/* Başlık Stili */
.registration-title {
    font-size: 38px;
    font-weight: bold;
    color: #333;
    margin-bottom: 25px;
    text-align: left;
    line-height: 1.3;
}

/* Genel Form Stili */
.registration-form {
    width: 100%;
    max-width: 450px;
    margin: 40px auto;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.registration-form:hover {
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

/* Açıklama Metni */
.registration-form p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
}

/* Input Alanı */
.registration-form input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease-in-out;
}

.registration-form input[type="email"]:focus {
    border-color: #ff6600;
    outline: none;
    box-shadow: 0 0 8px rgba(255, 102, 0, 0.2);
}

/* Kayıt Butonu */
.registration-form .register-button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #ff6600, #ff4500);
    color: #fff;
    font-size: 17px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
    font-weight: bold;
}

.registration-form .register-button:hover {
    background: linear-gradient(135deg, #e65c00, #d44300);
    transform: translateY(-2px);
}

/* Login Link */
.registration-form .login-link {
    color: #0073aa;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    transition: color 0.3s ease-in-out;
}

.registration-form .login-link:hover {
    color: #004f7a;
    text-decoration: underline;
}

/* Arka Plan Resmi ve Hizalama */
.l-section-img {
    background-position: center top 80px !important;
    margin-top: -200px;
}

/* Modal Stili */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 12% auto;
    padding: 25px;
    border: 1px solid #888;
    width: 30%;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    animation: modalFadeIn 0.3s ease-in-out;
}

.close-modal {
    float: right;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.2s ease-in-out;
}

.close-modal:hover {
    color: #ff4500;
}

/* Modal Açılma Animasyonu */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .registration-container {
        max-width: 100%;
        padding: 15px;
    }

    .registration-title {
        font-size: 28px;
    }

    .registration-form {
        max-width: 100%;
        padding: 20px;
        margin: 30px auto;
    }

    .modal-content {
        width: 80%;
    }
}

#resendEmailButton {
    display: none;
    width: 100%;
    padding: 12px;
    text-align: center;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#resendEmailButton:hover {
    background-color: #005f8d;
}

/* Genel Stil */
.registration-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* Google Giriş Alanı */
.google-login-container {
    text-align: center;
    margin-bottom: 15px;
}

/* Google Butonu */
.google-login-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4285F4;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 10px auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Google Logosu */
.google-login-button img {
    height: 24px;
    width: 24px;
    margin-right: 10px;
}

/* Hover Efekti */
.google-login-button:hover {
    background-color: #357ae8;
}

/* Ayırıcı Çizgi */
.separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 10px 0;
}

.separator::before,
.separator::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.separator span {
    padding: 0 8px;
    font-size: 13px;
    color: #777;
}
