/* Registration Wizard specific styles */
.cgib-step {
    animation: fadeIn 0.4s var(--transition-elegant);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.password-toggle:hover {
    color: var(--cgib-gold) !important;
}

#resend-otp-btn:disabled {
    color: var(--cgib-border);
    cursor: not-allowed;
}