@charset "UTF-8";

/*
    Paleta de cor:
    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%;
    transform: translate(-50%, -50%);
    overflow: hidden;

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

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

section#login div#imagem{
    display: block;
    background: #5f2c82 url(../imagens/pexels-ben-neale-123878-380337.jpg) no-repeat;
    background-size: cover;
    background-position: left bottom;
    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.8em;
    margin-bottom: 40px;
}

form div.campo{
    background-color: #5f2c82;
    display: flex;
    align-items: center;
    height: 40px;
    border-radius: 5px;
    margin: 5px 0px;
}

div.campo input{
    height: 100%;
    border: 0px;
    width: calc(100% - 30.5px);
    padding: 5px;
    border: 5px solid #5f2c82;
}

div.campo img{
    width: 30px; 
    height: 30px;
}

div.campo label{
    display: none;
}

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

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

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

form a.botao:hover{
    background-color: #5ecfcc;
}

form a.botao img{
    width: 20px; 
    height: 20px;
}