@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

/*
------ Paleta de Cores ------
*/

:root {
    --fontegoogle: "Google Sans", sans-serif;;
    --tomverde: #49a09d;
    --tomlilas: #5f2c82;
}

* {
    margin: 0px;
    padding: 0px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    box-sizing: border-box;
}

html, body {
    background-color: var(--tomlilas);
    width: 100vw;
    height: 100vh;
}

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

#login {
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #fff;
    width: 256px;
    height: 502px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.7);

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

#imagem {
    display: block;
    height: 200px;
    background: var(--tomlilas) url(../imagens/degradelinhas.jpg) no-repeat;
    background-size: cover;
}

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


#formulario h1 {
    text-align: center;
    margin-bottom: 10px;
    font-family: var(--fontegoogle);
}

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

.icone {
    width: 35px;
    height: 35px;
    padding: 5px;
    fill: white;
}

.campos input {
    background-color: #60d5d1;
    font-size: 1em;
    border: none;
    padding: 4px;
    width: calc(100% - 39px);
    height: 100%;
    border-radius: 8px;
    transform: translateY(-12px);
}

form .campos {
    display: block;
    width: 100%;
    height: 44px;
    background-color: var(--tomlilas);
    margin: 6px 0px;
    border-radius: 8px;
    border: 4px solid var(--tomlilas);
}

form label {
    display: none;
}

form input[type=submit] {
    display: block;
    width: 100%;
    height: 33px;
    font-size: 1em;
    font-weight: 700;
    background-color: var(--tomverde);
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 200ms;
}

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

form input:focus-within {
    background-color: #fff;
}



a.botao {
    margin-top: 6px;
    padding-top: 6px;
    display: block;
    text-align: center;
    text-decoration: none;
    background-color: #60d5d1;
    font-size: 1em;
    width: 100%;
    height: 34px;
    border: 1px solid #49a09d;
    border-radius: 6px;
    font-weight: 600;
    color: #1f4241;
    transition-duration: 200ms;
    
}

.envelope {
    width: 12px;
    height: 12px;
    fill: #1f4241;
}

a.botao:hover {
    /*background-image: linear-gradient(to right, #1f4241, transparent);*/
    background-color: #dff4f4;
}