body {
  margin: 0;
  padding: 0;
}

#main {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #00000033;
}

#input-field {
  width: 30vw;
  height: 30vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
  box-shadow: 10px 10px 15px 5px rgba(125, 125, 125, 0.3);
}

#error p {
  color: red;
  margin: 30px;
}

p {
  font-family: Arial;
  padding: 0;
  margin: 0;
}

#username-field, #password-field {
  display: flex;
  align-items: center;
}

#username-field input, #password-field input {
  margin: 10px;
  padding: 5px;
  font-family: Arial;
  font-size: 25px;
  border-width: 0px 0px 3px 0px;
  border-color: #00000055;
  background-color: #FFFFFF00;
  transition: border-color 0.3s ease, background-color 0.3s ease, border-radius 0.3s ease;
}

#username-field input:focus, #password-field input:focus {
  outline: none;
  border-color: #000000FF;
  background-color: #00000022;
  border-radius: 5px;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #00000022 inset;
  -webkit-text-fill-color: #000;
}

#submit {
  margin-top: 35px;
  font-size: 1.2vh;
  width: 3vw;
  height: 3vh;
  border-radius: 7px;
  border-color: rgba(125, 125, 125, 0.5);
  background-color: #00000033;
}