/* Two-Step Registration Form Styles */

/* Step indicators */
.step-indicators {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.step {
    width: 33.33%;
    padding: 10px 15px;
    text-align: center;
    background-color: #f8f8f8;
    color: #6d6d6d;
    position: relative;
    cursor: default;
    flex: none;
}

.step.active {
    background-color: #f0f0f0;
    color: #333;
    font-weight: bold;
}

.step.active:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #96588a;
    transition: all 0.3s ease;
}

/* Step content */
.step-content {
    display: none;
    margin-bottom: 20px;
}

.step-content.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Form field styling */
.registration-steps input.error,
.registration-steps select.error {
    border-color: #e2401c;
}

.woocommerce-error {
    padding: 10px 15px;
    border-left: 3px solid #e2401c;
    background-color: #f8d7da;
    color: #721c24;
    margin-bottom: 10px;
}

/* Button styling */
#next-step-button,
#prev-step-button,
#phone-error {
    margin-top: 10px;
}

#next-to-step-3,
#prev-to-step-1 {
    margin-bottom: 10px
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .step {
        padding: 8px 10px;
        font-size: 14px;
    }
}