.signup-form-section {
    background: white;
    border-radius: 0 15px 15px 0;
    padding: 40px;
}

.signup-brand-section {
    background: linear-gradient(135deg, var(--eos-orange) 0%, var(--eos-orange-light) 100%);
    border-radius: 15px 0 0 15px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-field .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-field .form-control:focus {
    border-color: var(--eos-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 140, 0, 0.25);
}

.form-field select.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 12px;
    padding-right: 40px;
}

.password-strength {
    margin-top: 5px;
    font-size: 12px;
}

.strength-weak { 
    color: #dc3545; 
}

.strength-medium { 
    color: #ffc107; 
}

.strength-strong { 
    color: #28a745; 
}

.password-confirmation {
    margin-top: 5px;
    font-size: 12px;
}

.loading-spinner {
    display: none;
}

.loading-spinner.show {
    display: inline-block;
}
