:root {
    --login-b-radius: 10px;
    --login-height: 48px;
}

.alert {
    position: absolute;
    bottom: 0;
    z-index: 3;
}

.auth-fluid {
    background: url('/assets/images/background_login.jpg');
    background-size: cover !important;
}

.custom__input {
    height: var(--login-height);
    background-color: #ffffffaa;
    border-radius: var(--login-b-radius);
    border: 1px solid transparent;
    border-color: rgba(0, 0, 0, 0);
    color: #000;
    font-size: 16px;
    font-weight: 400;

    &::placeholder {
        color: #000;
    }

    &:hover {
        border-color: #ffffff60;
    }
}

.custom__button {
    border-radius: var(--login-b-radius);
    border: none;
    height: calc(var(--login-height) - 4px);
    box-shadow: none;
    color: #fff;
    background: linear-gradient(to right, #f0462d 0%, #ffb200 100%);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 14px;
    padding: 0;
    width: 100%;
    transition: all 200ms ease-out;

    &:hover {
        filter: brightness(0.8);
    }

    &:active {
        scale: 0.95;
    }

    &:disabled {
        background: rgba(255, 178, 0, 0.2);
        color: lightgrey !important;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }
}

.custom__buttonSecondary {
    border-radius: 6px;
    border: none;
    height: calc(var(--login-height) - 2px);
    box-shadow: none;
    color: #000;
    background: #fff;
    font-weight: 400;
    font-size: 14px;
    padding: 0;
    width: 100%;
    transition: all 200ms ease-out;

    &:hover {
        filter: brightness(0.8);
    }

    &:active {
        scale: 0.95;
    }
}

.formCard__titulo {
    font-weight: 600 !important;
    text-align: center;
    color: #fff;
    margin-top: 32px;
}

.formCard__descricao {
    font-weight: 500 !important;
    font-size: 15px;
    text-align: center;
    color: #fff;
    margin: 20px 0;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.texto__link {
    color: #fff !important;
    font-size: 15px !important;
    display: flex !important;
    font-weight: 400 !important;

    text-align: center;
}

.texto__link:hover {
    text-decoration: underline;
}

.texto__opcaoCadastro {
    color: #fff !important;
    font-size: 16px !important;
    display: flex !important;
    font-weight: 400 !important;
}

.form-check-input:checked {
    background-color: var(--new-primary-color) !important;
    border: none;
}

.formCard {
    width: 580px;
    background: #331c40cc;
    border-radius: calc(var(--login-b-radius) + 2px);
    padding: 48px 150px;
}

.texto__suporte {
    color: #FFF !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    margin-top: 20px;
    margin-bottom: -20px;
    text-align: center;
}

.texto__suporte a {
    color: #ffb200  !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    margin-left: 4px;
}

.texto__suporte a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.texto__reenviar {
    color: #FFF !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    text-align: center;
    margin-top: 4px;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    translate: -8px 4px;
}

.texto__reenviar button {
    color: #ffb200  !important;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.texto__reenviar button:not(:disabled) {
    cursor: pointer;
}

.texto__reenviar button:not(:disabled):hover {
    text-decoration: underline;
    opacity: 0.8;
}

.password__icon {
    border-radius: 0 var(--login-b-radius) var(--login-b-radius) 0;
    background: #ccdce7;
    border: none;
    display: flex;
    height: calc(var(--login-height) - 2px);
    translate: 0 1px;
}

.password__icon i {
    font-size: 18px;
}

.logo__sistema {
    width: 100%;
    height: auto;
}

#caps-warning {
    width: 100%;
    text-align: center;
    padding: 8px;
    color: #ff0e3a;
    font-size: 13px;
    font-weight: 600;
    display: none;
    background: #ffffffdb;
    border-radius: 4px;
}

.mfa__input-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 25px 0;
    gap: 7px
}

.mfa__input {
    font-size: 17px;
    font-weight: 600;
    border-radius: 7px;
    border: solid 2px #999;
    color: #fff;
    width: 100%;
    height: 50px;
    background-color: rgba(50, 33, 67, 0.8);
    outline: none;
    transition: all 150ms ease-in;
    text-align: center;

    &:focus {
        border: solid 2px #fff;
        scale: 1.05;
    }

    &:disabled {
        filter: brightness(0.6);
    }
}

* {
    font-family: 'Lato', serif !important;
}
