@charset "UTF-8";

/*
    Paleta de cores:
    Verde #49a09d
    Lilás #5f2c82
*/
* {
    margin: 0px;
    padding: 0px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    box-sizing: border-box;
}

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

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

section#login {
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0px 0px 10px #000000a8;
    overflow: hidden;
    width: 290px;
    height: 500px;
    /* todas as transformações e transições devem ser colocadas ao final */
    transform: translate(-50%, -50%); 
    transition: width .5s, height .5s;
    transition-timing-function: ease;
}

div {
    display: block;
}

div#foto {
    background: #5f2c82 url(../imagens/entrada.jpg) no-repeat;
    background-size: cover;
    height: 200px;
}

div#formulario {
    padding: 10px;
}

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

div.campo > i {
    font-size: 1.5em;
    color: #ffffff;
    width: 35px;
    padding: 5px;
}

div.campo > label {
    display: none;
}

div.campo > input {
    background-color: #70f7f2;
    border-radius: 10px;
    border: none;
    font-size: 1em;
    width: calc(100% - 40px);
    height: 100%;
    padding: 10px;
    transform: translate(1px, -7px);
}

div.campo > input:focus-within {
    background-color: #ffffff;
}

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

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

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

form > a.botao:hover {
    background-color: #61d4d1;
}

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