@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
* {
    font-family: 'Inter';
}
:root {
    --bs-primary-rgb: 68, 110, 155;
}

.text-primary {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.bg-primary {
    --bs-text-opacity: 1;
    background-color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

input::-ms-reveal,
input::-ms-clear {
    display: none;
}

input::-webkit-credentials-auto-fill-button {
    visibility: hidden;
    display: none !important;
}