/* Shared onboarding step styles — extracted from duplicated scoped CSS */

.step-container {
    width: 100%;
    margin: 0 auto;
    max-width: 600px;
}

.step-header {
    text-align: center;
    margin-bottom: 32px;
}

    .step-header h2 {
        font-size: 24px;
        font-weight: 700;
        color: var(--rz-text-color);
        margin: 0 0 8px;
    }

    .step-header p {
        font-size: 15px;
        color: var(--rz-text-secondary-color);
        margin: 0;
    }

.step-card {
    background: var(--rz-base-background-color);
    border: 1px solid var(--rz-border-color);
    border-radius: 14px;
    padding: 28px;
}

.step-back {
    margin-top: 20px;
    text-align: center;
}

.step-actions-outer {
    margin-top: 24px;
}

.step-hint {
    margin-top: 12px;
    font-size: 13px;
    color: var(--rz-text-tertiary-color);
}

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

@media (max-width: 640px) {
    .step-card {
        padding: 20px 16px;
    }
}
