h1 {
  color: rgb(235, 213, 171);
  font-family: OS;
  font-size: 40px;
}

h2 {
  color: rgb(139, 174, 102);
  font-family: OS;
  font-size: 20px;
}

p.error {
  font-family: OS;
  font-size: 18px;
  color: #ff6961;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

input {
  text-align: center;
  border-radius: 10px;
  font-size: 20px;
  border: 1px white solid;
  outline: none;
  transition: border-color 0.2s ease;
}

input:focus {
  border-bottom: 3px rgb(62, 71, 114) solid;
}

button.contrast {
  margin-top: 20px;
  width: fit-content;
  background: none;
  border: 1px rgb(139, 187, 146) solid;
  border-radius: 50px;
  color: rgb(139, 187, 146);
  font-family: OS;
  font-size: 20px;
  padding-left: 10%;
  padding-right: 10%;
  cursor: pointer;
}

button.contrast:hover {
  border: 1px rgba(139, 187, 146, 0.664) solid;
  color: rgba(139, 187, 146, 0.664);
  font-size: 19px;
}

div.container {
  border: 2px rgb(235, 213, 171) solid;
  border-radius: 50px;
  margin-top: 20px;
  width: 100%;
  margin-left: 1%;
  margin-right: 1%;
  background-color: rgb(29, 29, 29);
  padding-bottom: 30px;
}
