/* Auth Pages CSS */
.auth-body {
  background: var(--grad1);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
}
.auth-body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,201,167,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,201,167,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.auth-wrap {
  width: 100%;
  max-width: 580px;
  position: relative;
  z-index: 2;
}
.auth-brand {
  text-align: center;
  margin-bottom: 24px;
}
.auth-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 8px;
}
.auth-brand-sub {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  margin-top: 6px;
}
.auth-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
}
.type-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.type-btn {
  padding: 16px;
  border-radius: 12px;
  border: 2px solid var(--border);
  background: var(--light-bg);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: var(--text-main);
}
.type-btn.active {
  border-color: var(--accent);
  background: rgba(0,201,167,0.06);
}
.type-btn-label { font-size: 14px; font-weight: 700; }
.type-btn-sub { font-size: 11px; color: var(--text-muted); }

.auth-footer-link {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
}
.auth-footer-link a { color: var(--accent); font-weight: 600; }

/* Profile fields */
.profile-field {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
.profile-field span {
  min-width: 130px;
  font-size: 13px;
  color: var(--text-muted);
}
.profile-field strong { font-size: 14px; font-weight: 600; }

@media (max-width: 600px) {
  .auth-card { padding: 28px 20px; }
  .type-row { grid-template-columns: 1fr; }
}
