@charset "UTF-8";

/* Paleta de cores
   Verde #49a09d
   Lilás #5f2c82
*/

*{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
}

body, html{
    background-color:#5f2c82 ;
    height: 100%;
    width: 100%;
}

main{
    position: relative;
    height: 100vh;
    width: 100vw;
}

section#login{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.801);

    background-color: white;
    width: 250px;
    height: 500px;
    border-radius: 20px;
}

section#login > div#imagem{
    display: block;
    background: #5f2c82 url(imagens/pexels-alberto-brunello-302575962-31745241\ \(1\).jpg) no-repeat ;
    height: 200px;

}

section#login >div#formulario{
    display: block;
    padding: 10px;
}

div#formulario > p{
    font-size: 1em;
}

div.campo > span{
    color: white;
    font-size: 2em;
    width: 40px;
    padding: 4px;
}

div.campo >input {
    background-color: #5ac5c2e8;
    font-size: 1em;
    width: calc(100% - 50px) ;
    height: 100%;
    transform: translateY(-14px) ;
    border: 0px;
    border-radius: 7px;
    padding: 4px;
}

div.campo > input:focus-within{
    background-color: white;
    border: none;
}

form >div.campo{
    background-color: #5f2c82;
    border: 6px solid #5f2c82;
    height: 40px;
    border-radius: 7px;
    margin: 5px 0px;
}

form > input[type=submit] {
    display: block;
    font-size: 1em;
    width: 100%;
    height: 40px;
    background-color: #49a09d;
    color: white ;
    border: none;
    border-radius: 7px;
    cursor: pointer;
}

form > input[type=submit]:hover {
    background-color: #2d6462;
}

form > a.botao {
    display: block;
    text-align: center;
    font-size: 1em;
    width: 100%;
    height: 40px;
    padding-top: 5px;
    margin-top: 5px;
    background-color: white;
    color: #49a09d;
    border: 1px solid #49a09d;
    border-radius: 7px;
    text-decoration: none;
}

form > a.botao:hover {
    font-size: .8em;
    background-color: #2d6462;
}