@import 'fonts.css';
@import 'configuration.css';


html, body {
    font-family: 'Nunito-Light', sans-serif;
    height: 100vh;
    background-color: var(--bg-color-secondary);
}

.container-login {
    position: fixed;
    width: 350px;
    transform: translate(-50%, -50%);
    top: 45%;
    left: 50%;
    z-index: 2;
}

.texto-autenticacao {
    color: var(--text-color-primary);
    font-family: Nunito-Bold, sans-serif;
}

.input-login {
    padding: 13px;
    font-size: 13px;
}

.button-entrar {
    background-color: var(--text-color-primary);
    border: none;
    color: white;
    font-weight: bold;
    width: 100%;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}


.footer-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 270px;
    background-image: url(../img/defaults/footer_auth.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}


/* Erro JQuery Validation */
.errorFormAutentication {
    border: 1px solid var(--text-color-danger);
}

/* Invalid Feedback - JS */
.invalid-feedback {
    position: absolute;
    width: 100%;
    font-size: 11px;
    color: var(--text-color-danger);
    font-style: italic;
    margin-top: 0;
}