.step-section {
    display: none;
}

.step-section.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.otp-inputs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
}

.otp-input {
    width: 48px;
    height: 56px;
    font-size: 24px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--input-bg);
    font-weight: 600;
    color: var(--text-main);
}

.otp-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--focus-ring);
    background-color: #ffffff;
}

.back-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 0;
    font-weight: 500;
}

.back-btn:hover {
    color: var(--text-main);
}

/* Extracted from inline styles */
.brand-logo-container img {
    width: 40px;
    height: 40px;
}

.check-icon {
    background: #2563eb;
    width: 20px;
    height: 20px;
}

.form-group label {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 4px;
    display: block;
}

.sign-up-link {
    margin-top: 15px;
}