@charset "UTF-8";

/*      Paleta de cores
        verde: #49a09d
        lilas: #5f2c82
*/

:root{
    --verde: #49a09d ;
    --lilas: #5f2c82 ;    
    --verdehover: #377a78 ;
    --verdeclaro: #68ece8 ;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}

#viewport{
    width: 100vw;
    height: 100vh;

    background-color: var(--lilas);
    
    display:flex;
    align-items: center;
    justify-content: center;
    
}
#tela{
    box-shadow: 0px 0px 10px black;
    border-radius: 20px;
    overflow: hidden;

    max-width: 270px;
    width: 50vw;
    height: 80vh;

    display:flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    
}
#imagem{
    width: 100%;
    height: 100%;
    background-image: url(../imagens/medio.jpg);
    background-position: right center;
    background-size: cover;


}
#formulario{
    
    background-color: white;
    width: 100%;
    height: 100%;
    text-align: center;
}

p, h1{
    padding: 8px;    
    color: var(--verdehover);
}
h1{
    font-size: 2em;    
    padding: 20px;
}
p{
    width: 100%;
}
form{
    
    display: flex;
    flex-direction: column;
    gap: 5px;
    
    padding: 20px;
    padding-bottom: 20px;
}
form > div.campo{
    display: flex;
    align-items: center;
    justify-content: space-around;

    background-color: var(--verde);
    border-radius: 8px;
    width: 100%;
    height: 40px;
    border: 2px solid var(--verde);
}
div.campo > label{
    display: none;
}
div.campo > span{
    color: white;
    font-size: 1.5em;
    padding: 5px;
}
div.campo>input{
    font-size: 1em;
    height: 100%;
    width: calc(100% - 39px);
    border: 0px;
    border-radius: 8px;
    
    text-align: center;
}
#botoes{
    padding-bottom: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.entrar{
    font-size: 1.2em;
    font-weight: 600;
    width: 230px;
    height: 40px;
    background-color: var(--verde);
    color: white;
    border: none;
    border-radius: 10px;
}

.entrar:hover{
    background-color: var(--verdehover);
    box-shadow: none;
}
.botao-esqueci-senha{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    font-size: 1em;
    width: 230px;
    height: 40px;
    background-color: white;
    border: 1px solid var(--verde);
    color: var(--verdehover);
    border-radius: 10px;
    text-decoration: none;

    margin-top: 5px;
    padding: 5px;
}
.botao-esqueci-senha:hover{
    background-color: var(--verde);
    color: white;
}