@import url('../globals/reset.css');

body{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;

  font-family: sans-serif;
  background: #141414;
}

.form{
  display: flex;
  flex-direction: column;
  justify-content: center;
  
  background: #8a2be211;

  border-radius: .5rem;
  border: 1px solid #8a2be2;
  padding: 2rem;
}

.form .field{
  display: flex;
  flex-direction: column;
  margin-top: .5rem;
}

.form .field label{
  font-size: .85rem;
  margin: .5rem 0;
  color: #e5e5e5;
}

.form .field input{
  border-radius: .25rem;
  border: 1px solid #8a2be2;
  padding: 1rem 1rem 1rem .5rem;
  background: #f4ebf5;
}

.form .field input::placeholder{
  color: #8a2be2a9;
}

.form .resetar{
  font-size: .7rem;
  cursor: pointer;
  color: #8a2be2;
  margin: .5rem 0 1.5rem;
}

.form button{
  text-transform: uppercase;
  font-weight: bold;
  padding: .7rem 1rem;
  border-radius: .25rem;
  color: #e5e5e5;
  background: #8a2be2;
}

.form button:hover{
  filter: brightness(.85);
}