 .notifyjs-bootstrap-error {
    font-weight: 600 !important;
    font-size: 11px;
}

body.login-bg {
    background-image: url("/assets/img/loginbg.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.login-card .card {
    background-color: rgba(255,255,255,0.94) !important;
}

.brand-logo img {
    max-width: 130px; 
    height: auto; 
    display: block;
    margin: 0 auto; 
}

#password-step {
    display: none;
}

/* Custom Validation Error Styling */
.error-message {
    display: none;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 15px;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    animation: fadeIn 0.3s ease-in-out;
}

.error-message.show {
    display: block;
}

.error-message::before {
    content: '!';
    display: inline-block;
    background-color: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    margin-right: 10px;
    font-weight: bold;
}

.form-control.error {
    border: 2px solid #dc3545 !important;
    background-color: #fff5f5;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom Block UI Loader */
.custom-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.navbar-nav .badge {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
}
.navbar-nav .text-dark {
    font-size: 0.9rem;
}
.navbar-nav .icon-md {
    font-size: 1.2rem;
}
@media (max-width: 767px) {
    .navbar-nav .me-4 {
        margin-right: 1rem !important;
    }
}
