/* body {
    font-family: "Segoe UI", Tahoma, sans-serif;
    background: linear-gradient(135deg, #1f5e3b, #2f7d4e);
    min-height: 100vh;
} */

body {
    min-height: 100vh;
    background:
        linear-gradient(
            /* rgba(25, 90, 55, 0.88), */
            rgba(25, 90, 55, 0.88)
        );
    /* url('/images/bg-image-w.png') */
    
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}


/* Top Bar */
.top-bar {
    background: #ffffff;
    padding: 12px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.logo {
    height: 40px;
    margin-right: 12px;
}

.system-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f5e3b;
}

/* Center Card */
.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 15px;
}

.login-card {
    background: #ffffff;
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.login-card h5 {
    color: #1f5e3b;
    font-weight: 600;
}

.form-label {
    font-weight: 500;
}

/* Button */
.btn-login {
    background: #1f5e3b;
    color: #fff;
    font-weight: 600;
    padding: 10px;
    border-radius: 8px;
}

.btn-login:hover {
    background: #174a2f;
    color: #fff;
}

/* Links */
.forgot-link {
    font-size: 14px;
    color: #1f5e3b;
    text-decoration: none;
}

.forgot-link:hover {
    text-decoration: underline;
}

/* Footer */
.footer-text {
    text-align: center;
    font-size: 13px;
    color: #777;
    margin-top: 20px;
}
/* ===== Forgot Password Page ===== */

.forgot-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 15px;
}

.forgot-card {
    background: #ffffff;
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.forgot-card h5 {
    color: #1f5e3b;
    font-weight: 600;
}

.forgot-card .form-label {
    font-weight: 500;
}

.forgot-card .btn-reset {
    background: #1f5e3b;
    color: #ffffff;
    font-weight: 600;
    padding: 10px;
    border-radius: 8px;
}

.forgot-card .btn-reset:hover {
    background: #174a2f;
    color: #ffffff;
}

.forgot-note {
    font-size: 14px;
    color: #b02a37;
    text-align: center;
}
/* ===== Reset Password Page ===== */

.reset-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 15px;
}

.reset-card {
    background: #ffffff;
    width: 100%;
    max-width: 520px;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.reset-card h5 {
    color: #1f5e3b;
    font-weight: 600;
}

.reset-card .form-label {
    font-weight: 500;
}

.reset-card .btn-reset {
    background: #1f5e3b;
    color: #ffffff;
    font-weight: 600;
    padding: 10px;
    border-radius: 8px;
}

.reset-card .btn-reset:hover {
    background: #174a2f;
    color: #ffffff;
}
