body {
  padding: 50px;
  font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}

a {
  color: #00B7FF;
}

.error {
  text-align: center;
  color: red;
  font-size: 1.25em;
  margin-top: 20px;
}

body {
  background-color: #d9d9d9;
}

h1 {
  text-align: center;
  color: white;
}

.all-caps {
  text-transform: uppercase;
}

.reset-password-page {
  display: grid;
  justify-content: center;
}

.reset-password {
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
}

.reset-password .inputs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.reset-password .input-wrapper {
  display: flex;
  flex-direction: row;
  grid-template-columns: max-content 1fr;
}

.reset-password label {
  color: #464242;
  text-align: left;
  width: 110px;
  margin-top: 7px;
}

.reset-password input[type="password"] {
  border-radius: 20px;
  padding: 10px;
  border: none;
  width: 200px;
}

.reset-password button[type="submit"] {
  border-radius: 20px;
  padding: 10px 20px;
  background-color: #5d8a40;
  color: white;
  border: none;
  cursor: pointer;
  width: 80px;
}

.reset-password button[type="submit"]:hover {
  background-color: #5d8a40;
}

.reset-password .button-wrapper {
  display: flex;
  align-items: center;
  justify-content: right;
  margin-top: 20px;
  margin-left: 250px;
}

.activation-wrapper {
  font-size: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.activation-card {
  background-color: #003A70;
  max-width: 600px;
  min-width: 300px;
  padding: 20px;
  border-radius: 10px;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.activation-wrapper button {
  border-radius: 20px;
  padding: 10px 20px;
  background-color: #5d8a40;
  color: white;
  border: none;
  cursor: pointer;
  width: 80px;
}

.activation-wrapper .button-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.activation-wrapper .text {
  color: #6d6565;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 20px;
  margin-top: 50px;
}

.activation-card .button-wrapper {
  margin-top: 10px;
}

.reset-password .activation-token {
  text-align: center;
  color: #5d8a40;
}

.password-changed button {
  border-radius: 20px;
  padding: 10px 20px;
  background-color: #5d8a40;
  color: white;
  border: none;
  cursor: pointer;
  width: 80px;
}

.password-changed button:hover {
  background-color: #5d8a40;
}

.password-changed {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

@media (max-width: 450px) {
  .reset-password .inputs {
    display: flex;
    flex-direction: column;
  }

  h1 {
    font-size: 1.5em;
  }
}