/* Merchant Auth Styles */
.mc-merchant-auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 20px;
    direction: rtl;
}

/* Expert Auth Container - Blue background */
.mc-expert-auth-container {
    background: #2563eb;
}

.mc-auth-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 450px;
    overflow: hidden;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mc-auth-header {
    background: #2563eb;
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.mc-auth-header h1 {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 700;
}

.mc-auth-header p {
    margin: 0;
    opacity: 0.95;
    font-size: 14px;
}

.mc-auth-tabs {
    display: flex;
    background: #f9fafb;
    border-bottom: 2px solid #e5e7eb;
}

.mc-tab-btn {
    flex: 1;
    padding: 15px;
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.mc-tab-btn:hover {
    color: #2563eb;
    background: #f3f4f6;
}

.mc-tab-btn.active {
    color: #2563eb;
    background: white;
}

.mc-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: #2563eb;
}

.mc-auth-form {
    display: none;
    padding: 30px;
}

.mc-auth-form.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.mc-auth-form .mc-form-group {
    margin-bottom: 20px;
}

.mc-auth-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.mc-auth-form label .required {
    color: #dc2626;
}

.mc-auth-form input[type="text"],
.mc-auth-form input[type="email"],
.mc-auth-form input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    font-family: inherit;
    box-sizing: border-box;
}

.mc-auth-form input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.mc-auth-form small {
    display: block;
    margin-top: 5px;
    color: #6b7280;
    font-size: 12px;
}

.mc-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: normal;
}

.mc-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin: 0;
}

.mc-btn-block {
    width: 100%;
    display: block;
}

.mc-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.mc-btn-primary {
    background: #2563eb;
    color: white;
}

.mc-btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.mc-btn-primary:active {
    transform: translateY(0);
}

.mc-btn-secondary {
    background: #6b7280;
    color: white;
}

.mc-btn-secondary:hover {
    background: #4b5563;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.4);
}

.mc-btn-secondary:active {
    transform: translateY(0);
}

.mc-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.mc-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    display: none;
}

.mc-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
    display: block;
}

.mc-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
    display: block;
}

/* Responsive */
@media (max-width: 480px) {
    .mc-merchant-auth-container {
        padding: 10px;
    }
    
    .mc-auth-card {
        border-radius: 15px;
    }
    
    .mc-auth-header {
        padding: 30px 20px;
    }
    
    .mc-auth-header h1 {
        font-size: 24px;
    }
    
    .mc-auth-form {
        padding: 20px;
    }
}

