main {
  height: 100vh;
  width: 100vw;
}

.centerTotal {
  height: 100%;
  width: 100%;
  display: grid;
  place-items: center;
}

.centered-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  max-width: 25rem;
}

.heading {
  width: 100%;
  text-align: center;
  font-size: 30px;
  margin: 0;
}

.email-info {
  margin-top: 10px;
  text-align: center;
}

.email-input {
  margin-top: 25px;
  width: 100%;
}

.reset-button {
  width: 100%;
  margin-top: 10px;
}

.back-login {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  font-size: 16px;
  line-height: 20px;
  color: var(--secondary);
  margin-top: 20px;
  transition: all 0.1s ease-in-out;
}

.back-login:hover {
  filter: brightness(90%);
}

.back-login:active {
  transform: scale(95%);
}

small {
  margin-top: 20px;
}

small button {
  background: none;
  color: var(--secondary);
  font-weight: 500;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: inherit;
}

.error-badge {
  padding: 0.5rem 1rem;
  margin: 0.2rem 0 0.7rem 0;
  background-color: rgba(255, 75, 75, 0.4);
  border: none;
  border-radius: 0.7rem;
  display: block;
}
