.clickable {
    color: #0d6efd;
    cursor: pointer;
    text-decoration: underline;
}

    .clickable:hover {
        color: #0a58ca;
    }
.auth-page {
  min-height: 100vh;
  background: #f7f7ef;
  padding: 32px 16px 64px;
  box-sizing: border-box;
}

.auth-header {
  max-width: 960px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.auth-brand {
  display: flex;
  align-items: center;
}

.auth-brand-logo {
  height: 44px;
  width: 44px;
  display: block;
}

.auth-nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
}

.auth-nav a {
  color: #7d8452;
  text-decoration: none;
  font-weight: 600;
}

.auth-nav a:hover {
  text-decoration: underline;
}

.auth-card {
  max-width: 960px;
  margin: 0 auto;
  background: #fffef7;
  border: 1px solid #e9ecd0;
  border-radius: 28px;
  padding: 32px 24px;
  box-shadow: 0 24px 80px rgba(22, 22, 18, 0.08);
  box-sizing: border-box;
}

.auth-card--narrow {
  max-width: 480px;
}

@media (min-width: 768px) {
  .auth-card {
    padding: 40px;
  }
}

.auth-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: #7d8452;
  margin: 0;
}

.auth-title {
  margin: 12px 0 0;
  font-size: 32px;
  font-weight: 600;
  color: #0a0a0a;
}

@media (min-width: 768px) {
  .auth-title {
    font-size: 44px;
  }
}

.auth-subtitle {
  margin: 12px 0 0;
  max-width: 640px;
  font-size: 14px;
  line-height: 1.6;
  color: #52525b;
}

form.auth-form {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .form-grid--2 {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid--dob {
    grid-template-columns: 1.35fr 1fr;
  }
}

.form-grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-label {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #18181b;
}

.form-input {
  width: 100%;
  border-radius: 0;
  border: 1px solid #dfe4aa;
  background: #fff;
  padding: 12px 16px;
  font-size: 14px;
  color: #18181b;
  box-sizing: border-box;
}

.form-input::placeholder {
  color: #a1a1aa;
}

.form-input:focus {
  border-color: #c7ce73;
  outline: none;
}

.form-input.is-invalid {
  border-color: #dc2626;
}

.field-error {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: #dc2626;
  min-height: 14px;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #18181b;
}

.checkbox-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border: 1px solid #dfe4aa;
}

.consent-box {
  border-radius: 22px;
  border: 1px solid #f0d6d2;
  background: #fff7f5;
  padding: 20px;
}

.consent-box h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 300;
  color: #18181b;
}

.consent-row {
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #3f3f46;
}

.consent-row input[type="checkbox"] {
  margin-top: 4px;
  width: 20px;
  height: 20px;
  border: 1px solid #d8b4ab;
}

.consent-highlight {
  font-weight: 600;
  font-style: italic;
  color: #d16757;
}

.form-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid #ecefd5;
  padding-top: 24px;
}

@media (min-width: 768px) {
  .form-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.form-footer-note {
  margin: 0;
  font-size: 13px;
  color: #71717a;
}

.btn-primary {
  border-radius: 999px;
  border: none;
  background: #18181b;
  color: #fff;
  padding: 12px 40px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary:hover {
  background: #27272a;
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-status {
  min-height: 20px;
  font-size: 14px;
}

.form-status--success {
  border-radius: 16px;
  border: 1px solid #cfe1c4;
  background: #f5fbf2;
  color: #375227;
  padding: 12px 16px;
}

.form-status--error {
  border-radius: 16px;
  border: 1px solid #f0c9c9;
  background: #fdf2f2;
  color: #7f1d1d;
  padding: 12px 16px;
}

.auth-switch {
  margin-top: 20px;
  font-size: 14px;
  color: #52525b;
  text-align: center;
}

.auth-switch a {
  color: #7d8452;
  font-weight: 600;
  text-decoration: none;
}

.auth-switch a:hover {
  text-decoration: underline;
}
