/* Register Page Specific Styles */

.step-container {
    transition: all 0.25s ease;
}

.step-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: 0.2rem 0 0.8rem 0;
}

.otp-group {
    display: flex;
    gap: 10px;
}

.otp-group input {
    flex: 0.7;
}

.otp-group button {
    width: auto;
    padding: 0 1.2rem;
    margin-top: 0;
    white-space: nowrap;
}

.resend-opt {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

@media (max-width: 480px) {
    .otp-group {
        flex-direction: column;
    }
    .otp-group button {
        width: 50%;
    }
}