@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: 0px;
    margin: 0px;

    box-sizing: border-box;
}

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

main{
    position: relative;

    height: 100vh;
    width: 100vw;
}

section#login{
    position: absolute;
    top: 50%;
    left: 50%;

    background-color: white;
    width: 260px;
    height: 515px;

    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.521);

    transition: width .3s, heigth 0.3s;
    transition-timing-function: ease;
    transform: translate(-50%, -50%);
}

section#login > div#imagem{
    display: block;
    background: #5f2c82 url(../imagens/pc.jpg);
    background-size: cover;

    height: 200px;
}

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

div#formulario > h1{
    text-align: center;
    margin-bottom: 10px;
}
div#formulario > p{
    font-size: 0.7em;
}

form > div.campo{
    background-color:#5f2c82 ;
    border: 2px solid #5f2c82;
    display: block;
    width: 100%;
    height: 40px;
    border-radius: 8px;
    margin: 5px 0px;
}

div.campo > label{
    display: none;
}

div.campo > i{
    color: white;
    /*background-color: black;*/
    font-size: 2em;
    width: 40px;
    padding: 5px;
}

div.campo > input{
    background-color: #ebebeb;
    font-size: 1em;
    width: calc(100% - 40px);
    height: 100%;
    border: 0px;
    border-radius: 8px;
    padding: 4px;
    transform: translate(40px,-42px);
}

div.campos > input:focus-within{
    background-color: white;
    outline: none;
}

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

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

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

form > a.botao:hover{
    background-color: #602c828a ;
}

form > a.botao > i{
    font-size: 0.8em;
}