.password-reset-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.password-reset-card {
  background: #dde6ec;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 2.5rem 2rem;
  max-width: 400px;
  width: 100%;
}

.password-reset-card h2, .password-reset-card h3 {
  margin-bottom: 1rem;
  text-align: center;
}

.password-reset-card p {
  text-align: center;
  color: #6c757d;
}

.password-reset-card form .mb-3 {
  margin-bottom: 1.2rem;
}

.password-reset-card label {
  font-weight: 500;
}

.password-reset-card input {
  width: 100%;
  padding: 0.5rem;
  border-radius: 6px;
  border: 1px solid #ced4da;
  margin-top: 0.3rem;
}

.password-reset-card .btn {
  width: 100%;
  padding: 0.6rem;
  font-weight: 600;
  border-radius: 6px;
  background: #0d6efd;
  color: #fff;
  border: none;
  transition: background 0.2s;
}

.password-reset-card .btn:hover {
  background: #084298;
}

.password-reset-card .text-danger {
  font-size: 0.95em;
  margin-top: 0.2rem;
}

.errorlist {
  color: #d32f2f;
  margin: 0.2em 0 0.5em 0;
  padding-left: 1.2em;
  list-style-type: disc;
  font-size: 0.97em;
}