/* ================================
   RESET PASSWORD PAGE
================================ */

.reset-page {
  min-height: 100vh;
  /* background: #f7fafc; */
  color: #0b1f3a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.reset-shell {
  width: min(1120px, 100%);
  min-height: 650px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  border-radius: 36px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(10, 45, 100, 0.12);
}

.reset-brand-panel {
  display: flex;
  align-items: center;
  padding: 4rem;
  background:
    linear-gradient(135deg, rgba(10, 45, 100, 0.92), rgba(28, 167, 163, 0.9)),
    radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 35%);
  color: #ffffff;
}

.reset-brand-content {
  max-width: 560px;
}

.reset-brand-logo {
  width: 110px;
  margin-bottom: 2.5rem;
}

.reset-eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reset-brand-panel h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.05;
}

.reset-brand-panel p {
  max-width: 520px;
  margin-top: 1.25rem;
  color: rgba(255,255,255,0.88);
  font-size: 1.08rem;
  line-height: 1.7;
}

.reset-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.reset-feature-list span {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
}

.reset-form-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  background: linear-gradient(135deg, #ffffff 0%, #f5fbfb 100%);
}

.reset-card {
  width: min(420px, 100%);
}

.reset-card-header {
  margin-bottom: 2rem;
}

.reset-card h2 {
  margin: 0;
  color: #0a2d64;
  font-size: 2rem;
  line-height: 1.2;
}

.reset-card-header p {
  margin-top: 0.75rem;
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
}

.reset-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.reset-form-group label {
  margin-bottom: 0.6rem;
  color: #0a2d64;
  font-size: 0.95rem;
  font-weight: 700;
}

.reset-form-group input {
  width: 100%;
  min-height: 52px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(10,45,100,0.14);
  border-radius: 16px;
  background: #ffffff;
  color: #0b1f3a;
  font-size: 1rem;
}

.reset-form-group input:focus {
  outline: none;
  border-color: #1ca7a3;
  box-shadow: 0 0 0 4px rgba(28,167,163,0.12);
}

.reset-submit {
  width: 100%;
  min-height: 56px;
  border: none;
  border-radius: 999px;
  background: #0a2d64;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}

.reset-submit:hover {
  background: #12397d;
}

.reset-login-text {
  margin-top: 1.5rem;
  color: #64748b;
  text-align: center;
}

.reset-login-text a {
  color: #0a2d64;
  font-weight: 700;
  text-decoration: none;
}

.reset-login-text a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .reset-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .reset-brand-panel,
  .reset-form-panel {
    padding: 3rem;
  }
}

@media (max-width: 390px) {
  .reset-page {
    padding: 1rem;
    align-items: flex-start;
  }

  .reset-shell {
    border-radius: 26px;
  }

  .reset-brand-panel {
    padding: 2rem 1.5rem;
  }

  .reset-brand-logo {
    width: 88px;
    margin-bottom: 1.5rem;
  }

  .reset-brand-panel h1 {
    font-size: 2.1rem;
    text-wrap: balance;
  }

  .reset-brand-panel p {
    font-size: 1rem;
  }

  .reset-feature-list span {
    font-size: 0.82rem;
    padding: 0.55rem 0.75rem;
  }

  .reset-form-panel {
    padding: 2rem 1.5rem;
  }

  .reset-card h2 {
    font-size: 1.75rem;
    text-wrap: balance;
  }
}