.auth-body {
  margin: 0;
  min-height: 100dvh;
  font-family: 'DM Sans', system-ui, sans-serif;
  background: #f4f4f0;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.auth-wrap {
  width: 100%;
  max-width: 420px;
}

.auth-brand {
  text-align: center;
  margin-bottom: 24px;
}

.auth-logo {
  font-size: 28px;
  font-weight: 600;
  color: #00C4C4;
}

.auth-tagline {
  margin: 8px 0 0;
  color: #5a5a55;
  font-size: 15px;
}

.auth-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.auth-card h1 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 600;
}

.auth-sub {
  margin: 0 0 24px;
  color: #5a5a55;
  font-size: 14px;
}

.auth-field {
  margin-bottom: 16px;
}

.auth-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #5a5a55;
}

.auth-field input {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: #fafaf7;
}

.auth-field input:focus {
  outline: none;
  border-color: #00C4C4;
  box-shadow: 0 0 0 3px rgba(0,196,196,0.2);
}

.auth-btn {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  margin-top: 8px;
}

.auth-btn-primary {
  background: #00C4C4;
  color: #fff;
}

.auth-btn-primary:hover {
  background: #00b0b0;
}

.auth-btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.auth-btn-google {
  background: #fff;
  color: #1a1a1a;
  border: 1px solid rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}

.auth-btn-google:hover {
  background: #fafaf7;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: #9c9c97;
  font-size: 13px;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.08);
}

.auth-footer {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #5a5a55;
}

.auth-footer a {
  color: #00C4C4;
  text-decoration: none;
  font-weight: 500;
}

.auth-footer a:hover {
  text-decoration: underline;
}

.auth-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
}

.auth-success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
}

.auth-hidden {
  display: none;
}
