        
        .login-container {
            max-width: 500px;
            width: 100%;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .card {
            width: 720px;
            max-width: 75%;
            border: none;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
            overflow: hidden;
            background: var(--card-bg);
            margin: 0 1px;
        }

        .card-header {
            background: var(--primary-color);
            color: white;
            text-align: center;
            padding: 20px;
            border-bottom: none;
        }

        .card-body {
            padding: 10px;
        }
        
        .logo-container {
            margin-bottom: 5px;
        }
        
        .logo-container img {
            width: 80px;
            height: auto;
            border-radius: 50%;
            border: 3px solid white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .form-control {
            height: 48px;
            border-radius: 8px;
            border: 1px solid #e1e5ee;
            padding: 10px 15px;
            font-size: 15px;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(23, 151, 232, 0.25);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--text-color);
        }
        
        .btn-login {
            background:  #89b6d1;
            border: none;
            color: rgb(246, 246, 248);
            padding: 12px 30px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            width: 100%;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .btn-login:hover {
             color: rgb(67, 94, 189);
            background:  #2381bc;
            transform: translateY(-2px);
        }
        
        .forgot-password {
            display: block;
            text-align: center;
            margin-top: 15px;
            color: #6c757d;
            text-decoration: none;
            font-size: 14px;
        }
        
        .forgot-password:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }
        
        .input-group-text {
            background: transparent;
            border-right: none;
        }
        
        .form-control:focus + .input-group-text {
            border-color: var(--primary-color);
        }
        
        .welcome-text {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--text-color);
        }
        
        .welcome-subtext {
            color: #6c757d;
            margin-bottom: 3px;
            font-size: 14px;
        }
        
        @media (max-width: 576px) {
            .card-body {
                padding: 25px 20px;
            }
            
            .welcome-text {
                font-size: 22px;
            }
        }
        /* Specific styling for the Recovery link */
.center-blue-link {
    color: #007bff !important; /* Professional Blue */
    font-weight: bold;
    text-align: center;
    width: 100%; /* Ensures it takes up full width for centering */
    display: block;
}

.center-blue-link:hover {
    color: #0056b3 !important; /* Darker blue on hover */
    text-decoration: underline;
}

/* If you are using Bootstrap, this ensures the LI itself centers its content */
.nav-item.d-flex {
    width: 100%;
    text-align: center;
}
#recoverWrapper {
    transition: all 0.3s ease-in-out;
}

.btn-outline-primary {
    border-color: #007bff;
    color: #007bff;
    padding: 8px 20px;
    border-radius: 50px; /* Rounded pill shape */
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-primary:hover {
    background-color: #007bff;
    color: #fff !important;
    box-shadow: 0 4px 8px rgba(0,123,255,0.3);
}
/* Animation for the success state */
.btn-success-animate {
    background-color: #28a745 !important;
    border-color: #28a745 !important;
    color: white !important;
    width: 160px; /* Slightly shrink the width */
    transition: all 0.4s ease;
}

/* Optional: a slight bounce effect when it appears */
@keyframes pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.success-pop {
    animation: pop 0.4s ease-out;
}
  /* Centered Message Overlay */
#statusOverlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 1000;
    padding: 20px 30px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: none; /* Hidden by default */
    text-align: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

#statusOverlay.active {
    display: block;
    transform: translate(-50%, -50%) scale(1);
}

#statusOverlay.success { border: 2px solid #28a745; color: #28a745; }
#statusOverlay.error { border: 2px solid #dc3545; color: #dc3545; }

/* Backdrop to dim the screen */
#overlayBackdrop {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    display: none;
    z-index: 999;
}
.logo-container img {
    /* Remove any rounding */
    border-radius: 0 !important; 
    
    /* Ensure the container doesn't clip the edges */
    object-fit: contain; 
    
    /* Optional: Set a specific size if it's looking distorted */
    width: auto;
    height: 80px; 
}
#user {
    font-size: 15px;
    
    font-weight: bold;
    letter-spacing: 1px; /* Adds a little breathing room between characters */
    text-transform: uppercase;
}