@charset "UTF-8";

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

:root {
  --lilas: #5f2c82;
  --verde: #49a09d;
}

* {
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

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

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

section#login {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.445);
  height: 515px;
  overflow: hidden;
  width: 250px;

  position: absolute;
  left: 50%;
  top: 50%;

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

div#imagem {
  background: var(--verde) url(../imagens/metal.jpg) no-repeat;
  background-position: left bottom;
  background-size: cover;
  display: block;
  height: 200px;
}

div#formulario {
  display: block;
  padding: 8px;
}

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

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

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

div.campo > label {
  display: none;
}

div.campo > span {
  /* background-color: black; */
  color: white;
  font-size: 1.9em;
  padding: 5px;
  width: 40px;
}

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

  transform: translateY(-10px);
}

form > input[type=submit] {
  background-color: var(--verde);
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  display: block;
  font-size: 1em;
  height: 40px;
  width: 100%;
}

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

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

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

#icone {
  font-size: 1.0em;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 48,
}