// Change auto-complete styles in Chrome
:-webkit-autofill,
:-webkit-autofill:hover,
:-webkit-autofill:focus {
    // Màu của chữ cũng bị thay đổi, chuyển về màu khi bình thường
    // Để màu trắng khi là .dark-theme
    // -webkit-text-fill-color: $gray-400; // giống màu .form-control, body
    -webkit-text-fill-color: #212529; // giống màu .form-control

    // Thời gian đổi màu nền trong 5000s (một thời gian dài)
    transition: background-color 5000s ease-in-out 0s;
}
