@charset "UTF-8";

*{
    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;
    background-color: white;
    width: 250px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.479);
    transition: width .3s, heigth .3s;
    transition-timing-function: ease;
}

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

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

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

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

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

.campo > input{
    background-color: #94cfcd;
    font-size: 1em;
    width: calc(100% - 45px);
    transform: translateY(-12px);
    height: 100%;
    padding: 4px;
    border: none;
    border-radius: 8px;
}

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

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

form label{
    display: none;
}

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

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

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

form > a.botao:hover{
    background-color: #6cd3cf ;
}

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

}