body {
  font-family: "Segoe UI", sans-serif;
  background: #f4f6f9;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 1rem;
}
.reset-wrapper {
  max-width: 420px;
  width: 100%;
}
.reset-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.reset-card h2 {
  color: #123692;
  margin-bottom: 1rem;
}
.reset-card p {
  margin-bottom: 1.2rem;
  color: #555;
}
.reset-card input {
  width: 100%;
  padding: 10px;
  margin-bottom: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.btn-reset {
  width: 100%;
  padding: 12px;
  background: #123692;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
}
.btn-reset:hover {
  background: #172d69;
}
.back-link {
  display: block;
  text-align: center;
  margin-top: 1rem;
  color: #123692;
  text-decoration: none;
}
.back-link:hover {
  text-decoration: underline;
}
@media (max-width: 360px) {
  .reset-card {
    padding: 1.2rem;
  }

  .reset-card h2 {
    font-size: 1.2rem;
  }

  .btn-reset {
    font-size: 0.9rem;
    padding: 10px;
  }
}
