/* Tab Content Styles */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block !important;
}

/* Password visibility toggle icon */
.ant-input-suffix {
    cursor: pointer;
}

.ant-input-suffix svg {
    pointer-events: none;
}

/* Spinner Animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

