/* =============================
   FORGOT PASSWORD PAGE STYLING
   Matches Register & Login Theme
   ============================= */

* {
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

body.center-page {
    background: #f5f7fa;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Card box */
.register-card {
    width: 380px;
    background: white;
    padding: 30px 28px;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    text-align: center;
    animation: fadeIn 0.4s ease;
}

.register-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a3d7c;
    margin-bottom: 20px;
}

/* Inputs */
.input-box {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 6px;
    border: 1px solid #cfcfcf;
    font-size: 15px;
    outline: none;
    transition: 0.25s;
}

.input-box:focus {
    border-color: #1a3d7c;
    box-shadow: 0 0 4px rgba(26, 61, 124, 0.3);
}

/* Button (same as register) */
.btn-register {
    width: 100%;
    padding: 12px;
    background: #1a3d7c;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s ease;
    margin-top: 10px;
}

.btn-register:hover {
    background: #102a57;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}

.status-label {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
}

/* Footer */
.login-footer {
    text-align: center;
    width: 100%;
    position: fixed;
    bottom: 10px;
    left: 0;
    font-size: 13px;
    color: #000000;
    letter-spacing: 0.3px;
}

/* Smooth fade in */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.back-login-text {
    margin-top: 14px;
}

.back-login-link {
    color: #1a3d7c;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: 0.2s;
}

.back-login-link:hover {
    text-decoration: underline;
    color: #102a57;
}

/* Logo (optional) */
.logo {
    width: 75px;
    margin-bottom: 15px;
}


.header-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 22px;
    font-family: 'Poppins', sans-serif;
    color: #1a3d7c;
}