/* Download scene specific styles */ 

/* Text animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.fade-in {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
    animation: fadeIn 0.8s ease-out forwards;
    width: 100%;
    padding: 0 20px;
}

/* Pictogram styling */
.config-pictogram {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
}

.form-line {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-label {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--text-gray);
    opacity: 0.3;
}

.progress-line {
    flex-grow: 1;
    height: 12px;
    background: #f5f5f5;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.progress-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--nts-green);
    transition: width 0.8s ease-out;
}

.line-fill::after {
    width: 100%;
}

.form-appear {
    animation: formAppear 0.8s ease-out forwards;
}

@keyframes formAppear {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.form-row {
    margin-bottom: 1.5rem;
}

.form-row label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    font-weight: 600;
}

.input-field {
    height: 40px;
    background: #f5f5f5;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.input-field::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--nts-green);
    opacity: 0.2;
    transition: width 0.8s ease-out;
}

.field-fill::after {
    width: 100%;
} 