.firstdiv {
  display: none !important;
}

.reset-container-div {
  --reset-bg: #f6f7f4;
  --reset-panel: #ffffff;
  --reset-soft: #faf7f2;
  --reset-line: rgba(31, 41, 55, 0.12);
  --reset-ink: #111827;
  --reset-muted: #6b7280;
  --reset-navy: #1f2937;
  --reset-gold: #9a6b2f;
  --reset-gold-soft: rgba(200, 164, 107, 0.14);
  align-items: center;
  background:
    radial-gradient(circle at 86% 12%, rgba(200, 164, 107, 0.14), transparent 28rem),
    linear-gradient(180deg, #fbfaf7 0%, var(--reset-bg) 100%);
  color: var(--reset-ink);
  display: flex;
  font-family: "Inter", "Poppins", "PT Sans", Arial, sans-serif;
  justify-content: center;
  min-height: clamp(560px, 72vh, 760px);
  padding: clamp(28px, 5vw, 70px) 16px;
  width: 100%;
}

.reset-container-div * {
  box-sizing: border-box;
}

.reset-password-container {
  background: var(--reset-panel);
  border: 1px solid var(--reset-line);
  border-radius: 24px;
  box-shadow: none;
  display: grid;
  justify-items: center;
  margin: 0;
  max-width: 520px;
  padding: clamp(26px, 4vw, 42px);
  text-align: center;
  width: min(100%, 520px);
}

.reset-icon-wrap {
  align-items: center;
  background: var(--reset-soft);
  border: 1px solid var(--reset-line);
  border-radius: 18px;
  display: inline-flex;
  height: 64px;
  justify-content: center;
  margin-bottom: 18px;
  width: 64px;
}

.reset-password-container .icon {
  color: var(--reset-gold);
  font-size: 28px;
  margin: 0;
}

.reset-kicker {
  color: var(--reset-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.reset-password-container h2 {
  color: var(--reset-ink);
  font-family: "Playfair Display", "Buenard", Georgia, serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  line-height: 1;
  margin: 0 0 14px;
}

.reset-password-container p {
  color: var(--reset-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 390px;
}

.reset-password-container .alert {
  border-radius: 14px;
  margin-bottom: 18px;
  text-align: left;
  width: 100%;
}

.reset-password-container form {
  display: grid;
  gap: 10px;
  text-align: left;
  width: 100%;
}

.reset-password-container label {
  color: var(--reset-ink);
  font-size: 13px;
  font-weight: 850;
}

.reset-password-container input {
  background: #ffffff;
  border: 1px solid var(--reset-line);
  border-radius: 14px;
  color: var(--reset-ink);
  font-size: 15px;
  min-height: 50px;
  padding: 12px 14px;
  width: 100%;
}

.reset-password-container input:focus {
  border-color: rgba(154, 107, 47, 0.58);
  box-shadow: none;
  outline: 3px solid rgba(200, 164, 107, 0.17);
}

.reset-password-container .invalid-feedback {
  display: block;
  font-size: 13px;
  margin-top: -4px;
}

.reset-password-container button {
  align-items: center;
  background: var(--reset-navy);
  border: 1px solid var(--reset-navy);
  border-radius: 999px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-size: 15px;
  font-weight: 900;
  justify-content: center;
  margin-top: 8px;
  min-height: 48px;
  padding: 0 18px;
  width: 100%;
}

.reset-password-container button:hover {
  background: #111827;
}

.reset-back-link {
  color: var(--reset-gold);
  display: inline-flex;
  font-size: 14px;
  font-weight: 850;
  margin-top: 18px;
  text-decoration: none;
}

.reset-back-link:hover {
  color: var(--reset-navy);
}

@media (max-width: 560px) {
  .reset-container-div {
    min-height: auto;
    padding: 20px 10px 42px;
  }

  .reset-password-container {
    border-radius: 20px;
  }
}
