@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:#F3F4F6;
    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 rgb(0, 0, 0, 0.450);

    transition: width .3s, height .3s;
    transition-timing-function: ease;
}

section#login > div#imagem {
    display: block;

    background: #2563EB url(../imagens/pexel2.jpg) no-repeat;

    background-size: cover;
    height: 200px;
}

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

div#formulario {
    margin: -1px;
    
}

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

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

form > div.campo {
    background-color: rgb(218, 222, 222);
    display: block;
    width: 100%;
    height: 40px;
    border-radius: 8px;
    margin: 5px 0px;
}


div.campo > label {
    display:none;

}

div.campo > span {
    font-size: 2em;
    width: 40px;
    padding: 5px;
}

div.campo > input {
    font-size: 1em;
    height: 74%;
    width: calc(97% - 45px);
    transform: translateY(-10px);
    border: 0px;
    border-radius: 8px;
    padding: 4px;
}

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

}

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

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: #12306f;
    border: 1px solid #12306f;
    border-radius: 7px;
    text-decoration: none;
}

form > a.botao:hover {
    background-color: #12306f;
    color: white;
}

form > a.botao > span {
    font-size: 1.3em;
}

section#login > div#formulario h1,
section#login > div#formulario p {
    color: #2B2B2B;
}


.assinatura {
    position: absolute;
    left: 50%;
    bottom: 20px; /* distância do fundo */
    transform: translateX(-50%);

    font-size: 0.85rem;
    color: #2B2B2B;
    opacity: 0.85;

    padding: 6px 14px;
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0px 6px 18px rgba(0,0,0,0.12);

    /* efeito glass */
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}



