*{
    padding: 0px;
    margin: 0px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
    
}


.tela-login {
    width: 100vw;
    height: 100vh;
    /* background-color: #0a8ccc; */
    background-image: url("../assets/img/fundo.jpg");
    /* background-image: linear-gradient(to top, rgb(43, 48, 121), rgb(8, 114, 146)); */
}

.barra-superior-login {
    width: 100%;
    height: 8%;
}

.conteudo-central {
    width: 100%;
    height: 84%;
    display: flex;

}

.footer-login {
    width: 100%;
    height: 8%;
}

.conteudo-central-esquerdo {
    width: 30%;
    height: 100%;
}

.conteudo-central-login {
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.conteudo-central-direito {
    width: 30%;
    height: 100%;
}

.espaco-login {
    padding: 5%;
    z-index: 90;
    display: flex;
    /* position: relative; */
    width: 70%;
    height: auto;
    /* background-color: rgb(65, 65, 65); */
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.texto-titulo-login {
    width: 100%;
    text-align: center;
}

/* .titulo-login {
    padding-left: 25px;
} */

.form {
    width: 100%;
}

.fundo-formulario {
    position: relative;
    display: flex;
    z-index: 1;
    width: 100%;
    /* height: 140px; */
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.input-box {
    margin-bottom: 25px;

}

.espaco-login button {
    height: 50px;
    width: 100%;
    color: white;
    background-color: rgb(112, 112, 112);
    border-radius: 3px;
    font-weight: bold;
    font-size: 16px;
    border: none;
    margin-bottom: 10px;
}

.espaco-login button:hover {
    background-color: rgb(8, 8, 8);
    cursor: pointer;
}

.espaco-login h2 {
    font-size: 25px;
    color: rgb(0, 0, 0);
    margin-top: 0px;
    margin-bottom: 20px;
}

.espaco-login input {
    height: 50px;
    width: 100%;
    color: black;
    background-color: rgb(236, 235, 235);
    border: none;
    border-radius: 5px;
    padding-left: 15px;
    box-sizing: border-box;
}

.espaco-login input:hover {
    background-color: rgb(202, 202, 202);

}

.imagem-logo {
    height: 30%;
    width: 70%;
    margin-bottom: 25px;
}

.imagem-logo img {
    height: 90%;
    width: 100%;
}


/* @media (max-width: 720px),
(max-height: 599px) {
  
} */

@media (orientation: landscape) {
  
}
@media (orientation: portrait) {  

.tela-login {
    width: 100vw;
    height: 100vh;
}
    .conteudo-central-esquerdo {
        width: 10%;
    }
    .conteudo-central-login {
        width: 80%;
    }
    .conteudo-central-direito {
        width: 10%;
    }
    .imagem-logo {
        height: 30%;
        width: 100%;
    }
    .espaco-login {     
        width: 100%;
    }
}