@charset "UTF-8";

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

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

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

main {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}

section#login {
  background-color: white;
  width: 260px;
  height: 515px;
  border-radius: 20px;
  overflow: hidden;
  transition: width 0.3s, height 0.3s;
  transition-timing-function: ease;
}

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

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

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

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

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

div.campo>label {
  display: none;
}

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

div.campo>input {
  background-color: #5abcb8;
  font-size: 1em;
  height: 100%;
  border: 0px;
  border-radius: 8px;
  padding: 4px;
  width: calc(100% - 45px);
  transform: translateY(-12px);
}

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

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: #276563;
}

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

form>a.botao:hover {
  background-color: #62cdca;
}

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