h1 {
  text-align: center;
  font-size: 2.25rem;
  margin: 2rem 0;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  max-width: 23.375rem;
}

p {
  width: 100%;
}

label {
  font-size: 1.25rem;
  font-weight: 600;
  color: #25313c;
  display: block;
  margin-bottom: 0.25rem;
}

input {
  font-family: inherit;
  width: 100%;
  height: 2.5rem;
  border-radius: 4px;
  border: 2px solid #f0c6a8;
  font-size: 1rem;
  padding: 0 0.5rem;
  margin-bottom: 1rem;
}

input:focus {
  outline: none;
  border: 2px solid #ffac71;
}

select {
  font-family: inherit;
  width: 100%;
  height: 2.5rem;
  border-radius: 4px;
  border: 2px solid #f0c6a8;
  font-size: 1rem;
  padding: 0 0.5rem;
  margin-bottom: 1rem;
}

select:focus {
  outline: none;
  border: 2px solid #ffac71;
}

button {
  font-family: inherit;
  background-color: #fac59e;
  border: none;
  border-radius: 4px;
  font-size: 1.125rem;
  color: #25313c;
  font-weight: 600;
  padding: 0.5rem 1.375rem;
  margin-bottom: 1rem;
}

button:hover {
  cursor: pointer;
  background-color: #ffac71;
}

#password-reset {
  text-align: center;
}

#switch-form {
  text-align: center;
}

#btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}

.alert {
  border-radius: 4px;
  background-color: #ffc0b4;
  padding: 0.5rem;
  max-width: 23.375rem;
  margin: 0.25rem auto;
  text-align: center;
}

.alert h2 {
  font-size: 1rem;
  margin: 0.5rem 0;
  color: #c7330f;
  text-transform: uppercase;
}

.alert p {
  margin: 0.5rem 0;
}

@media (max-width: 450px) {
  form {
    padding: 0 1rem;
  }
}
