*{
  margin: 0;
  padding: 0;
  font-family: 'Jost', sans-serif;
}

.conteiner{
  align-items: center;
  background: linear-gradient(#e66465, #9198e5);
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
}

.body{
  display: flex;
  flex-direction: column;
  width: 25%;
}

.titulo{
  font-size: 3rem;
  
}

input{
  padding: 0.5rem 1.5rem;
  font-size: 1.5rem;
  text-align: center;
  outline: none;
  margin: 1rem 0;
}

#btValidar {
  background: none;
  border: 1px solid black;
  cursor: pointer;
  padding: 0.5rem 1.5rem;
  margin-bottom: 1rem;
}

#btValidar:hover{
  background-color: rgba(255, 255, 255, 0.171);
  border: 1px solid white;
  font-weight: bold;
  color: rgb(75, 75, 75);
}