/* Enhanced button feedback */
input[type="submit"].disabled-state {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    opacity: 0.65 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

.reset-spinner {
    display: inline-block;
    margin-left: 8px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Improve overall button appearance */
#kc-reset-password-form input[type="submit"] {
    transition: all 0.2s ease-in-out;
}

#kc-reset-password-form input[type="submit"]:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
