@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

body {
    font-size: 1rem;
}

.login-wrap {
    width: 80%;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    position: absolute;
    right: 1.4em;
    top: 0.2em;
    font-size: 20px;
}

.form-control:disabled, .form-select:disabled {
    cursor: not-allowed;
}

.form-control.is-invalid {
    border-color: #dc2626 !important;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #e9ecef !important;
    cursor: not-allowed;
}

.flatpickr-input:disabled {
    background-color: #e9ecef !important;
    cursor: not-allowed;
}

#loadingIndicator {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9998;
}

.spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #0284c7;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media only screen and (max-width: 576px) {
    .login-wrap {
        width: 100%;
    }

    .notes-text-style {
        font-size: 0.87rem;
    }
}