.steps {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.steps__dot {
    width: 32px;
    height: 3px;
    background: var(--border);
    border-radius: 2px;
    transition: background 0.2s;
}

.steps__dot--active {
    background: var(--fg);
}

.steps__dot--done {
    background: var(--fg-muted);
}

/* Уведомление про passphrase */
.notice {
    padding: 12px 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.5;
}

.notice__text {
    color: var(--fg-muted);
    margin-bottom: 8px;
}

.notice__text strong {
    color: var(--fg);
    font-weight: 500;
}

.notice__more {
    font-size: 13px;
    color: var(--fg);
    background: transparent;
    border: none;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.notice__more:hover {
    color: var(--fg-muted);
}
