/* Vanilla CSS extensions for Prime Credit Capital Dashboard Register Form */

html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Form inputs autocomplete styling */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    -webkit-text-fill-color: #020617 !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Loader Spin Utility */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

.disabled\:opacity-60:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
