
.auth-card {
    max-width: 460px;
    width: 100%;
}

.step-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.step-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    transition: background 0.3s;
}

.step-dot.active {
    background: #696cff;
    transform: scale(1.3);
}

.step-dot.done {
    background: #71dd37;
}

.password-box {
    background: #f0fff4;
    border: 2px dashed #71dd37;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.password-value {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: #2d3748;
    font-family: 'Courier New', monospace;
}

.copy-btn {
    cursor: pointer;
    background: none;
    border: none;
    color: #696cff;
    font-size: 1.1rem;
    margin-right: 8px;
}

.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
    direction: ltr;
}

.otp-inputs input {
    width: 46px;
    height: 52px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    border: 2px solid #d1d5db;
    border-radius: 10px;
    transition: border-color 0.2s;
}

.otp-inputs input:focus {
    border-color: #696cff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(105, 108, 255, 0.15);
}

.otp-inputs input.filled {
    border-color: #71dd37;
    background: #f0fff4;
}

.countdown {
    font-size: 0.85rem;
    color: #8592a3;
}

.countdown span {
    font-weight: 700;
    color: #ff3e1d;
} 