/* Mobile-Friendly Auth Styles - Your Website Colors */
/* Force override theme styles */

body .mz-auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 20px;
    background: #dbeafe !important;
}

body .mz-auth-box {
    background: white !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1) !important;
    padding: 40px !important;
    width: 100% !important;
    max-width: 550px !important;
    border: 1px solid #93c5fd !important;
}

body .mz-auth-header {
    text-align: center !important;
    margin-bottom: 30px !important;
}

body .mz-auth-header h2 {
    color: #1e40af !important;
    font-size: 28px !important;
    margin-bottom: 10px !important;
}

body .mz-auth-header p {
    color: #1e40af !important;
    font-size: 14px !important;
}

body .mz-form-group {
    margin-bottom: 20px !important;
}

body .mz-form-group label {
    display: block !important;
    margin-bottom: 8px !important;
    color: #1e40af !important;
    font-weight: 500 !important;
    font-size: 14px !important;
}

body .mz-form-group input,
body .mz-form-group select {
    width: 100% !important;
    padding: 12px 15px !important;
    border: 2px solid #93c5fd !important;
    border-radius: 10px !important;
    font-size: 16px !important;
    box-sizing: border-box !important;
    background: white !important;
}

body .mz-form-group input:focus,
body .mz-form-group select:focus {
    outline: none !important;
    border-color: #1e40af !important;
}

body .mz-auth-btn {
    width: 100% !important;
    padding: 14px !important;
    background: #dbeafe !important;
    color: #1e40af !important;
    border: 2px solid #93c5fd !important;
    border-radius: 10px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
}

body .mz-auth-btn:hover {
    background: #1e40af !important;
    color: white !important;
}

body .mz-auth-footer {
    text-align: center !important;
    margin-top: 25px !important;
    padding-top: 20px !important;
    border-top: 1px solid #93c5fd !important;
}

body .mz-auth-footer a {
    color: #1e40af !important;
    text-decoration: none !important;
    font-size: 14px !important;
}

body .mz-auth-error {
    background: #fee2e2 !important;
    color: #991b1b !important;
    padding: 12px !important;
    border-radius: 10px !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    border: 1px solid #fca5a5 !important;
}

body .mz-auth-success {
    background: #d1fae5 !important;
    color: #065f46 !important;
    padding: 12px !important;
    border-radius: 10px !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    border: 1px solid #6ee7b7 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body .mz-auth-box {
        padding: 25px !important;
    }
    
    body .mz-auth-header h2 {
        font-size: 24px !important;
    }
    
    body .mz-form-group input,
    body .mz-form-group select {
        padding: 10px 12px !important;
        font-size: 14px !important;
    }
}

/* Small phones */
@media (max-width: 480px) {
    body .mz-auth-box {
        padding: 20px !important;
    }
    
    body .mz-auth-header h2 {
        font-size: 20px !important;
    }
    
    body .mz-auth-header p {
        font-size: 12px !important;
    }
}