/* Componente de step y animaciones */
.step-container {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin: 0 auto;
    max-width: 100%;
}

.step-container.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.5s ease;
}

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

.step-number {
    background-color: var(--primary-color);
    color: white;
    border-radius: 0;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

/* Componente de loading */
.loading-spinner {
    width: 3rem;
    height: 3rem;
}

/* Animación de éxito */
.success-animation {
    text-align: center;
    padding: 20px;
}

.success-animation i {
    font-size: 80px;
    color: var(--success-color);
}

/* Animación de error */
.error-animation {
    text-align: center;
    padding: 20px;
}

.error-animation i {
    font-size: 80px;
    color: var(--danger-color);
}