﻿/* --- FORGOT PASSWORD ÖZEL STİLLERİ --- */

/* Giriş sayfasındaki temel yapı üzerine eklemeler */
.login-card {
    transition: all 0.4s ease-in-out;
}

/* Başarı Mesajı Animasyonu */
.animate-fade-in {
    animation: fadeInScale 0.5s ease-out forwards;
}

@@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* reCAPTCHA Hizalama */
.g-recaptcha {
    transform: scale(0.9);
    transform-origin: 0 0;
    display: inline-block;
}

/* Hata Özeti Alanı */
#errorSummary {
    border-radius: 10px;
    font-weight: 500;
}

/* Link Butonları */
.btn-link {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    transition: color 0.2s;
}

    .btn-link:hover {
        color: #fff;
    }

/* Mobil Uyumluluk */
@@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.85);
        margin-left: -10px;
    }
}
