@charset "UTF-8";

/*
  Paleta de cores
  Verde: #49a09d
  Lilás: #5f2c82
*/

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

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

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

section#login {
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;

  background-color: white;
  width: 260px;
  height: 515px;
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.45);

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

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

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

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

div#formulario > p {
  font-size: 0.8em;
  margin: 10px 0px;
}

form > div.campo {
  background-color: #5f2c82;
  border: 2px solid #5f2c82;
  display: block;
  width: 100%;
  border-radius: 8px;
  height: 36px;
  margin: 5px 0px;
}

.c1 {
  border-radius: 8px 8px 8px 0px;
}

.c2 {
  border-radius: 0px 8px 8px 8px;
}

div.campo > label {
  display: none;
}

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

div.campo > input {
  background-color: #94cfcd;
  font-size: 1em;
  width: calc(100% - 45px);
  height: 92%;
  border: 0px;
  padding: 4px;
  transform: translateY(-15px);
}

div.campo > input:focus-within {
  background-color: white;
  outline: none;
}

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

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

form > a.botao {
  display: block;
  text-align: center;
  font-size: 1em;
  width: 100%;
  height: 40px;
  padding-top: 7px;
  margin-top: 5px;
  background-color: white;
  color: #2d6462;;
  border: 1px solid #49a09d;
  border-radius: 5px;
  text-decoration: none;
}

form > a.botao:hover {
  background-color: #6cd3cf;
}

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