<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&amp;display=swap');


:root{
    --cor1: #09bab4;
    --cor2: #3ACBC6;
    --cor3: #6adfdb; 
    --cor4: #b3fbfa;
    --cordest:#0594ad;


}
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body,html{
    font-family: 'Roboto', sans-serif;
    background-color: #84dedd;
    height: 100vh;
    width: 100vw;
}

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

section#login{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    background-color: var(--cor3);
    width: 260px;
    height: 520px;
    border-radius: 20px;
    overflow: hidden;

    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.439);

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



section#login &gt; div#imagem{
    background: url("../img/login-2.png") no-repeat;
    background-color: var(--cor1);
    background-size: cover;
    background-position: center center;
    height: 200px;
    background-size: cover;

}


section#login &gt; div#formulario{
    display: table;
}

div#formulario &gt; h1{
    font-weight: 900;
    text-align: center;
    margin: 10px 0px;
}
div#formulario &gt; p{
    display: flex;
    padding: 5px 14px;
    font-size: 1em;
}

form &gt; div.campo{
    display: block;
    margin: auto;
    text-align: center;
    background-color: var(--cor2);
    border: 2px solid var(--cor2);
    height: 35px;
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
    width: 85%;

}
div.campo &gt; label{
    display: none;
}
.campo &gt; span{
    color: white;
   
    padding: 5px;
    
}
.campo &gt; input{
    background-color: #b5f7f5;
    font-size: 0.8em;
    width: calc(100% - 38px);
    transform: translateY(-9px);
    height: 100%;
    border: 0px;
    border-radius: 8px;
    padding: 8px;
}



form &gt; input[type=submit]{
    display: block;
    margin: auto;
    font-size:1em;
    width: 85%;
    height: 35px;
    background-color: var(--cor1);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
form &gt; input[type="submit"]:hover{
    background-color: #026b7e;
   
}

form &gt; a.botao{
    display: block;
    margin: auto;
    text-align: center;
    font-size: 1em;
    width: 85%;
    height: 35px;
    padding-top: 5px;
    margin-top: 5px;
    border-radius: 5px;
    background-color: white;
    border: 1px solid #09bab4;
    text-decoration: none;
    color: #02505e;
}

form &gt; a.botao:hover{
    background-color: #16e8e1;
}
form &gt; .botao &gt; span{
    font-size: 0.8em;
 
}</pre></body></html>