/* ══════════════════════════════════════════════════
   Auth Pages — matches landing page design system
   ══════════════════════════════════════════════════ */

.auth-wrapper {
  min-height: calc(100vh - 64px - 120px);
  display: flex; align-items: center; justify-content: center;
  padding: 48px 20px;
  background: #fdf2f8;
}

.auth-card {
  width: 100%; max-width: 440px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(81,28,102,0.08);
  padding: 40px 36px;
}

.auth-logo {
  display: block; margin: 0 auto 28px;
  height: 44px; width: auto;
}

.auth-title {
  font-size: 28px; font-weight: 800; color: #1a1a2e;
  text-align: center; margin-bottom: 4px;
  letter-spacing: -0.5px;
}

.auth-subtitle {
  font-size: 15px; color: #1a1a2e; text-align: center;
  margin-bottom: 28px;
}

/* ── Inputs ── */
.auth-field { margin-bottom: 16px; }

.auth-input-group {
  position: relative; display: flex; align-items: center;
}

.auth-input {
  width: 100%; height: 50px;
  padding: 0 16px 0 46px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-family: inherit; font-size: 15px; color: #1a1a2e;
  background: #fff;
  transition: border-color 0.15s;
  outline: none;
}
.auth-input:focus { border-color: #6500F8; }
.auth-input::placeholder { color: #1a1a2e; }

.auth-input--no-icon { padding-left: 16px; }

.auth-textarea {
  height: 140px; padding: 14px 16px;
  resize: vertical; line-height: 1.6;
}

.auth-input-icon {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: #1a1a2e; pointer-events: none; display: flex;
}

.auth-toggle-pw {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  cursor: pointer; color: #1a1a2e; display: flex;
  background: none; border: none; padding: 0;
}
.auth-toggle-pw:hover { color: #6500F8; }

/* ── Errors ── */
.auth-error {
  font-size: 13px; color: #dc2626; margin-top: 6px;
}

/* ── Button ── */
.auth-btn {
  display: block; width: 100%;
  padding: 14px; border: none;
  background: #511c66; color: #fff;
  font-family: inherit; font-size: 16px; font-weight: 700;
  border-radius: 60px; cursor: pointer;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(81,28,102,0.2);
  margin-top: 8px;
}
.auth-btn:hover {
  background: #6500F8;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(101,0,248,0.3);
}

/* ── Links ── */
.auth-forgot {
  display: block; text-align: right;
  font-size: 14px; color: #511c66; font-weight: 600;
  margin-top: -8px; margin-bottom: 16px;
  text-decoration: none;
}
.auth-forgot:hover { text-decoration: underline; }

.auth-footer-text {
  text-align: center; font-size: 14px; color: #1a1a2e;
  margin-top: 24px;
}
.auth-footer-text a {
  color: #511c66; font-weight: 600; text-decoration: none;
}
.auth-footer-text a:hover { text-decoration: underline; }

/* ── Verify Email specifics ── */
.auth-icon-large {
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  width: 64px; height: 64px; border-radius: 50%;
  background: #ede9fe; color: #6500F8; font-size: 28px;
}

.auth-notice {
  background: #fef9e7; border: 1px solid #fde68a;
  border-radius: 10px; padding: 12px 16px;
  font-size: 13px; color: #1a1a2e;
  margin-bottom: 20px; display: flex; align-items: flex-start; gap: 10px;
}

.auth-success {
  background: #e6f5f0; border: 1px solid #a7f3d0;
  border-radius: 10px; padding: 12px 16px;
  font-size: 13px; color: #0f7b5f;
  margin-bottom: 20px; display: flex; align-items: flex-start; gap: 10px;
}

.auth-logout {
  display: inline-block; text-align: center;
  font-size: 14px; color: #1a1a2e; margin-top: 20px;
  background: none; border: none; cursor: pointer;
  font-family: inherit; text-decoration: none;
}
.auth-logout:hover { color: #6500F8; }

.auth-text {
  font-size: 15px; color: #1a1a2e; text-align: center;
  line-height: 1.6; margin-bottom: 20px;
}

.auth-status {
  background: #e6f5f0; border: 1px solid #a7f3d0;
  border-radius: 10px; padding: 12px 16px;
  font-size: 14px; color: #0f7b5f;
  margin-bottom: 20px; text-align: center;
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .auth-card { padding: 32px 24px; }
  .auth-title { font-size: 24px; }
  .auth-wrapper { padding: 32px 16px; }
}
