/* Signup Flow Wizard Styles */

.wizard-section {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.wizard-step {
    animation: fadeIn 0.3s ease-in-out;
}

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

.section-header {
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.75rem;
}

.section-header h4 {
    margin-bottom: 0;
    font-weight: 600;
}

/* Form labels inherit from Odoo default styling */
.form-label {
    margin-bottom: 0.5rem;
}

/* Form controls inherit from Odoo default styling - no custom overrides */
/* Removed custom form-control styling to use Odoo standards */

/* Standard invalid feedback styling from Odoo */
.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
}

/* RFC field specific styles */
#company_vat {
    font-family: inherit;
    letter-spacing: 1px;
}

/* RFC validation feedback */
.rfc-help-text {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

.rfc-help-text .example {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
}

.signup-wizard-progress .progress {
    border-radius: 10px;
    background-color: #e9ecef;
    overflow: hidden;
}

.signup-wizard-progress .progress-bar {
    border-radius: 10px;
    transition: width 0.6s ease;
}

.wizard-navigation {
    padding: 1rem 0;
    margin-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.wizard-prev-btn {
    min-width: 120px;
}

.wizard-next-btn, .signup-submit-btn {
    min-width: 120px;
}

.oe_signup_form {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

@media (max-width: 768px) {
    .oe_signup_form {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .wizard-section {
        padding: 1rem;
    }
    
    .wizard-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .wizard-prev-btn, .wizard-next-btn, .signup-submit-btn {
        width: 100%;
    }
}

/* Enhanced progress labels */
.signup-wizard-progress small {
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.signup-wizard-progress small.text-primary {
    font-weight: 600;
}

.signup-wizard-progress small.text-info {
    font-weight: 500;
}