.step-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 28px;
}

.step-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    transition: all 0.3s;
}

.step-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

.step-dot.done {
    background: #16a34a;
}

.reset-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.reset-step.active {
    display: block;
}

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

.field {
    margin-bottom: 16px;
    text-align: left;
}

.field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
    font-size: 0.9em;
}

.field input {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 0.95em;
    background: var(--card);
    color: var(--text);
}

.field input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.info-text {
    font-size: 0.88em;
    color: var(--muted);
    margin-bottom: 16px;
    text-align: center;
    line-height: 1.5;
}

.btn-row {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-row button,
.btn-row a {
    flex: 1;
    padding: 11px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    text-align: center;
    text-decoration: none;
    font-size: 0.95em;
    transition: opacity 0.2s, transform 0.15s;
}

.btn-row button:hover,
.btn-row a:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-row button:active,
.btn-row a:active {
    transform: translateY(0);
}

.btn-cancel {
    background: var(--border);
    color: var(--text);
}

.btn-confirm {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
}

.btn-confirm:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.success-icon {
    font-size: 3em;
    text-align: center;
    margin: 16px 0;
    color: #16a34a;
}

.success-text {
    text-align: center;
    color: #16a34a;
    font-weight: 700;
    font-size: 1.1em;
}
