form {
  padding: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
}

input[type="password"],
input[type="submit"] {
  border: none;
  outline: none;
  height: 40px;
  width: 350px;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-right: 5px;
  padding-left: 25px;
  padding-right: 25px;
  font-size: 1.2em;
  letter-spacing: 1px;
}

input[type="submit"] {
  width: 400px;
}

input::placeholder {
  color: rgb(92, 113, 72);
  letter-spacing: unset;
}

input[type="password"]:hover,
input[type="password"]:focus {
  background-color: rgba(191, 191, 191, 255);
  border-bottom: 2px solid white;
  height: 38px;
}

input[type="submit"]:hover,
input[type="submit"]:focus {
  background-color: rgba(191, 191, 191, 255);
  border-bottom: 2px solid white;
  height: 40px;
}