@charset "UTF-8";

/* 
paleta de cores
verde: #49a09d
lilas: #5f2c82
*/

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

body, html {
    background-color: #5f2c82;
    height: 100vh;
    width: 100vw;
}

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

section#login {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    background-color: white;
    width: 70vw;
    height: 530px;
    border-top-right-radius: 50px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.308);
    transition: width 0.4s, height 0.4s; /* cria animacao suave quando o tamanho muda */
    transition-timing-function: ease; /* suaviza a animacao */
    text-align: center;
    overflow-y: auto;
}

section#login > div#imagem {
    display: block;
    background: url(../imagens/bg.jpg) no-repeat;
    background-position: center bottom;
    background-size: cover;
    background-attachment: fixed;
    height: 200px;
    width: 100vw;
}

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

div#formulario > h1 {
    text-align: center;
    font-weight: bold;
    font-size: 2em;
}

div#formulario > p {
    text-align: center;
    font-weight: lighter;
    font-size: 1.3em;
}

.material-symbols-rounded {
  font-variation-settings:
  'FILL' 1,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

.campo {
    display: block;
    width: 100%;
    height: 40px;
    margin: 10px 0px 10px 0px;
    margin-bottom: 20px;
}

.campo > input {
    width: 90%;
    display: inline-block;
    background-color: #e4e4e4;
    color: #00384b;
    border: none;
    padding: 10px 32px;
    text-decoration: none;
    border-radius: 10px;
    transition: 0.2s;
    font-size: 1.1em;
}

.butoes {
    width: 100%;
    text-align: center;
}

.btnPrimary {
    display: inline-block;
    font-size: 1em;
    background-color: #008CBA;
    color: white;
    border: none;
    padding: 10px 32px;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.39);
    transition: 0.5s;
    width: 100%;
    margin-bottom: 10px;
    font-weight: bolder;
}

.btnPrimary:hover {
    background-color: #005a79;
    transition: 0.5s;
}

.btnPrimary:active {
    background-color: #0094c5;
    transition: 0.2s;
}

form > div.butoes > a {
    display: block;
    width: 100%;
    border: 2px solid #008CBA;
    border-radius: 10px;
    color: #003749;
    text-decoration: none;
    text-align: center;
    font-size: 1em;
    padding: 8px 30px;
    cursor: pointer;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.39);
    transition: 0.5s;
}

form > div.butoes > a:hover {
    background-color: #008CBA;
    color: white;   
    transition: 0.5s;
}