@charset "UTF-8";

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

   Amarelo: #fcd183
   Azul: #1f85c0
*/

* {
    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-image: linear-gradient(to left, #fcd183, #1f85c0);
    height: 100vh;
    width: 100vw;
}

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

section#login {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;

    background-color: white;
    width: 250px;
    height: 512px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.459);

    transition: width 0.3s, height 0.3s;
    transition-timing-function: ease;
}

section#login > div#imagem {
    display: block;
    background: #5f2c82 url(../imagens/img-lapis.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 200px;
}

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

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

div.campo > input {
    display: inline;
    padding: 3px;
    height: 30px;
}
div.campo > i {
    display: inline; 
    
}

form > input[type=submit] {
    display: block;
    margin-top: 9px;
    font-size: 1em;
    width: 100%;
    height: 40px;
    background-color: #49a09d;
    color: black;
    border: none;
    border-radius: 5px;
}

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

form > a.botao {
    display: block;
    text-align: center;
    font-size: 1em;
    width: 100%;
    height: 40px;
    padding: 5px;
    margin-top: 5px;
    background-color:white;
    color: black;
    border: 1px solid #49a09d;
    border-radius: 5px;
    text-decoration: none;
}
form > a.botao:hover {
    background-color: rgba(128, 128, 128, 0.575);
}
form > a.botao > i {
    font-size: 0.9em;
}
