@charset "UTF-8";

/* 
Paleta de cores 
Verde botão #3BE477
Preto escuro #040404
Preto claro #1A1A1A
Cinza #E8E8E8
*/

* {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    background-color: #1A1A1A;
    background-image: linear-gradient(to top, #040404, #1A1A1A);
    color: white;
    height: 100vh;
    width: 100vw;
}

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

section#login {
    position: absolute;
    top: 50%;
    left: 50%;    
    background-color: #040404;
    width: 310px;
    height: 550px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 10px #040404;

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

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

section#login > div#formulario {
    display: block;
    padding: 15px;
    text-align: center;
}

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

div#formulario > p {
    font-size: .8em;
    text-align: center;
    font-weight: lighter;
    margin-bottom: 10px;
}

form > div.campo {
    text-align: left;

    font-size: .9em;
    height: 40px;
    margin: 20px 0px;
}

div.campo > label {
    font-size: 1em;
    font-weight: lighter;
}

div.campo > input {
    background-color: #E8E8E8;
    font-size: lighter;
    border-radius: 4px;
    width: 100%;
    height: 28px;
}

form > input[type=submit] {
    display: block;
    background-color:#1ed760;
    text-align: center;
    font-weight: lighter;
    color:#040404;
    font-size: .7em;
    width: 28%;
    height: 40px;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    margin: 0 auto 15px;
    transition: transform 0.2s ease;
}

form > input[type=submit]:hover {
    transform: scale(1.1);
}

form > a.botao {
    display: inline-block;
    text-align: center;
    font-weight: lighter;
    background-color: transparent;
    padding: 4px 15px;
    border: 1.8px solid white;
    border-radius: 18px;
    color: white;
    text-decoration: none;
    font-size: .7em;
    cursor: pointer;
}

