@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: #910ad4cf;
}

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

#login{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    background-color: white;
    width: 250px;
    height: 520px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.463);
    transition: width 0.3s, heigth 0.3s;
    transition-timing-function: ease;
}

#imagem{
    display: block;
    background: url(imagens/pexels-eosvini-2896034.jpg);
    height: 200px;
    background-size: cover;
    background-repeat: no-repeat;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

#forms{
    display: block;
    padding: 10px;
}

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

#forms > p{
    font-size: 0.8em;
    margin: 10px;
}

.campo{
    background-color: #910ad4cf;
    height: 60px;
    border-radius: 5px;
    margin: 5px 0px;
}

input{
    padding: 8px;
    border-radius: 8px;
    height: 70%;
    border: 0px;
    margin-bottom: 20px;
}

div > #icon{
    color: white;
    padding: 5px;
    font-size: 2em;
    width: 40px;
}

#forms label{
    display: none;
}

button{
    display: block;
    font-size: 1em;
    width: 100%;
    height: 40px;
    background-color: #49a09d;
    border-radius: 5px;
    margin-top: 10px;
}

button:hover{
    cursor: pointer;
    background-color: #2d6462;
}

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