@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;
}

#login {
    position: absolute;
    top: 50%;
    left: 50%;
    overflow: hidden;

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

    transform: translate(-50%, -50%);
    transition: width 1s, height 1s;
    transition-timing-function: ease;
}

#login > #imagem {
    display: block;
    background: #5f2c82 url(../imagens/login.jpg);
    background-size: cover;
    background-position: bottom;
    height: 200px;
}

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

#formulario > h1{
    text-align: center;
    margin-bottom: 10px;
}

#formulario > p {
    font-size: .8em;
}

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

div.campo > label {
    display: none;
}

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

div.campo > input {
    background-color: #66ccc8;
    font-size: 1em;
    width: calc(100% - 45px);
    height: 100%;
    border: 0;
    border-radius: 8px;
    padding: 4px;
    transform: translateY(-13px);
}

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

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

form > input[type=submit]:hover {
    background-color: #326e6d;
    border: 1px solid black;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.454);
}

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: black;
    border: 1px solid #49a09d;
    border-radius: 8px;
    text-decoration: none;
}

form > a.botao:hover {
    background-color: #326e6d;
    border: 1px solid black;
    color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.454);
}

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