/* =========================
   FORGOT PASSWORD PAGE
========================= */

.forgot-password-container {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: #f4f4f8;
}

/* =========================
   CARD
========================= */

.forgot-password-card {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    padding: 36px 32px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    animation: fadeInUp 0.4s ease;
}

/* =========================
   TEXT
========================= */

.forgot-password-title {
    margin: 0 0 12px;
    font-size: 26px;
    font-weight: 700;
    color: #111a2c;
}

.forgot-password-description {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 24px;
}

.forgot-password-note {
    margin-top: 18px;
    font-size: 12px;
    color: #777;
    text-align: center;
}

/* =========================
   FORM
========================= */

.forgot-password-form {
    margin-top: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #111a2c;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #d0d0d5;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: #bfa232;
    box-shadow: 0 0 0 3px rgba(191, 162, 50, 0.15);
}

/* =========================
   BUTTON
========================= */

.btn-full {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
}

/* =========================
   BACK LINK
========================= */

.forgot-password-back {
    margin-top: 22px;
    text-align: center;
}

.forgot-password-back a {
    font-size: 14px;
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.forgot-password-back a:hover {
    color: #111a2c;
    text-decoration: underline;
}

/* =========================
   FLASH MESSAGES
========================= */

.flash-messages {
    margin-bottom: 16px;
}

.flash {
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 10px;
}

.flash.success {
    background: #e6f4ea;
    color: #1e7e34;
}

.flash.warning {
    background: #fff4e5;
    color: #a66f00;
}

.flash.error {
    background: #fdecea;
    color: #b02a37;
}

/* =========================
   ANIMATION
========================= */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 480px) {
    .forgot-password-card {
        padding: 28px 22px;
    }

    .forgot-password-title {
        font-size: 22px;
    }
}
