/* ===== RESET ===== */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
}

/* ===== BACKGROUND ===== */
.login-wrapper {
    height: 100vh;
    background: 
        linear-gradient(
            rgba(15, 61, 46, 0.75),
            rgba(15, 61, 46, 0.75)
        ),
        url('../img/DoctorNursePatient.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== LOGIN CARD ===== */
.login-card {
    background: rgba(255, 255, 255, 0.95);
    width: 360px;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* ===== HEADER ===== */
.login-header {
    text-align: center;
    margin-bottom: 25px;
}

/* Login logo size */
.login-header img {
    width: 120px;      /* increase width */
    height: auto;      /* keep aspect ratio */
  /*  max-height: 120px;  control height */
    margin-bottom: 10px;
}


.login-header h5 {
    margin: 0;
    font-weight: 700;
    color: #0f3d2e;
}

.login-header p {
    font-size: 13px;
    color: #555;
    font-weight: 700;

}

/* ===== FORM GROUP ===== */
.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-group i {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #0f3d2e;
    font-size: 16px;
}

.form-group .form-control {
    padding-left: 40px;
    height: 44px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

/* ===== LOGIN BUTTON ===== */
.login-btn {
    background: #7f1d1d; /* medical red */
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    padding: 10px;
    margin-top: 10px;
    border: none;
    transition: background 0.2s ease;
}

.login-btn:hover {
    background: #991b1b;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
    .login-card {
        width: 90%;
    }
}

.forgot-link {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: #0f3d2e;
    text-decoration: none;
}

.forgot-link:hover {
    color: #7f1d1d;
    text-decoration: underline;
}
