#main-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

#auth-row {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.reset-title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #111827;
}

#auth-row .form-group {
  width: 100%;
  margin-bottom: 1rem;
}

#auth-row label {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  color: #374151;
}

#auth-row .page-description {
  color: #4b5563;
}

#auth-row input[type="email"],
#auth-row input[type="password"] {
  padding: 0.5rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  width: 100%;
  font-size: 1.25rem;
}

#auth-row .reset-submit {
  background: #1b46d8;
  color: #fff;
  border-radius: 5px;
  padding: 0.75rem 1.5rem;
  margin-top: 1rem;
  border: 0;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
  font-size: 1.25rem;
  font-weight: 700;
}

#auth-row .reset-submit:hover {
  background: #163bb8;
}

#auth-row input:focus-visible,
#auth-row .reset-submit:focus-visible {
  outline: 3px solid #0f766e;
  outline-offset: 2px;
}

@media (max-width: 575.98px) {
  #auth-row {
    padding: 1.25rem;
  }

  .reset-title {
    font-size: 1.5rem;
  }

  #auth-row label,
  #auth-row input[type="email"],
  #auth-row input[type="password"],
  #auth-row .reset-submit {
    font-size: 1rem;
  }
}
