.configure-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.config-form {
    width: 80%;
    max-width: 400px;
}

.config-form-line {
    display: flex;
    align-items: center;
    margin: 15px 0;
    opacity: 0;
}

.config-icon-label {
    width: 30px;
    height: 30px;
    background: #f0f0f0;
    border-radius: 4px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.config-icon-label i {
    color: var(--primary-gray);
    font-size: 1rem;
}

.config-progress-line {
    flex-grow: 1;
    height: 12px;
    background: #f0f0f0;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.config-progress-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--nts-green);
    transition: width 0.8s ease-out;
}

.config-form-line.active .config-progress-line::after {
    width: 100%;
}

.config-form-appear {
    animation: configFormAppear 0.5s ease-out forwards;
}

@keyframes configFormAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.config-form-line {
    animation: configLineAppear 0.5s ease-out forwards;
    animation-play-state: paused;
}

@keyframes configLineAppear {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
} 