* {
    box-sizing: border-box;
}

.alert {
    position: absolute;
    width: 100%;
}

.login {
    height: 100vh;
    width: 100%;
}

.login-cabecalho {
    height: 80px;
}

.login-conteudo {
    background-image: url("../../assets/img/fundo3.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.login-conteudo .login-formulario {
    background-color: white;
    max-height: 100%;
    overflow-y: auto;
    padding: 20px 35px;
    min-width: 30vw;
    border-radius: 40px;
    min-height: 50%;
    display: flex;
    justify-content: center;
}

.icone-olho {
    float: right;
    margin-right: 15px;
    margin-top: -1.95rem;
    cursor: pointer;
}

.login-rodape {
    height: 40px;
}

@media (min-width: 700px) {
    .login-conteudo{
        height: calc(100vh - 80px - 40px);
    }
}

@media (min-width: 800px) {
    :root {
        font-size: 18px;
    }
}

@media (min-width: 1400px) {
    :root {
        font-size: 20px;
    }
} 