/* Premium Black and Gold Theme for MBA Authentication */
.mba-auth-container {
    max-width: 450px;
    margin: 2rem auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000000; /* Black background */
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3); /* Gold shadow */
}

.mba-auth-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 2rem;
    background: #1a1a1a; /* Dark gray form background */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid #D4AF37; /* Gold border */
    position: relative;
}

.mba-auth-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #FFD700, #CFB53B);
    border-radius: 8px 8px 0 0;
}

.mba-auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.mba-auth-header h2 {
    color: #D4AF37; /* Gold color */
    margin: 0 0 0.5rem;
    font-weight: 600;
    font-size: 1.8rem;
}

.mba-auth-header p {
    color: #cccccc; /* Light gray */
    margin: 0;
    font-size: 0.95rem;
}

.mba-form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.mba-form-row {
    display: flex;
    gap: 1rem;
}

.mba-form-row .mba-form-group {
    flex: 1;
}

.mba-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #D4AF37; /* Gold color */
    font-weight: 500;
    font-size: 0.9rem;
}

.mba-form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #333;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: #2a2a2a;
    color: #000000;
}

.mba-form-group input:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Password input with toggle */
.mba-password-input-wrapper {
    position: relative;
}

.mba-toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #7f8c8d;
    background: none;
    border: none;
    padding: 5px;
}

.mba-toggle-password:hover {
    color: #D4AF37;
}

.mba-form-remember {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.mba-form-remember label {
    display: flex;
    align-items: center;
    color: #cccccc;
    font-size: 0.9rem;
    cursor: pointer;
}

.mba-form-remember input {
    margin-right: 8px;
    width: auto;
}

.mba-form-submit {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.mba-btn {
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

.mba-btn-login, .mba-btn {
    background: linear-gradient(135deg, #D4AF37, #CFB53B);
    color: #000000; /* Black text on gold buttons */
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.mba-btn-login:hover, .mba-btn:hover {
    background: linear-gradient(135deg, #CFB53B, #C5A028);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

.mba-btn.secondary {
    background: #2a2a2a;
    color: #D4AF37;
    border: 1px solid #D4AF37;
}

.mba-btn.secondary:hover {
    background: #333;
    transform: translateY(-2px);
}

.mba-auth-links {
    text-align: center;
    margin-top: 1.5rem;
}

.mba-auth-links a {
    color: #D4AF37;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.mba-auth-links a:hover {
    color: #CFB53B;
    text-decoration: underline;
}

.mba-alert {
    margin-top: 1rem;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.mba-alert.mba-success {
    background: rgba(212, 237, 218, 0.2);
    color: #d4edda;
    border: 1px solid #28a745;
    border-left: 4px solid #28a745;
}

.mba-alert.mba-error {
    background: rgba(248, 215, 218, 0.2);
    color: #f8d7da;
    border: 1px solid #dc3545;
    border-left: 4px solid #dc3545;
}

.mba-help {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.mba-pw-feedback {
    margin-top: .5rem;
}

.mba-pw-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.mba-pw-list li {
    font-size: .9rem;
    padding: .15rem 0;
}

.mba-pw-list li.ok {
    color: #065f46;
}

.mba-pw-list li.bad {
    color: #7f1d1d;
}

.mba-hidden {
    display: none !important;
}

/* Responsive design */
@media (max-width: 480px) {
    .mba-auth-container {
        padding: 1rem;
    }
    
    .mba-auth-form {
        padding: 1.5rem;
    }
    
    .mba-form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .mba-form-submit {
        flex-direction: column;
    }
    
    .mba-btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    .mba-form-group input {
    color: #000000; /* black text */
}
.mba-hp-wrapper {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}


}