/* Auth page styles (drop-in) */
body.auth-body {
  font-family: 'Nunito', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: #fff;
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.auth-main {
  width: 100%;
  max-width: 760px;
}

.auth-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(17,24,39,0.08);
  padding: 48px 56px;
  text-align: center;
}

.auth-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}

.logo-initial {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 0 8px 24px rgba(34,197,94,0.16);
}

.brand-text { text-align: left; }

.brand-title {
  font-weight: 700;
  font-size: 18px;
  color: #111827;
  line-height: 1;
}

.brand-sub {
  font-size: 12px;
  color: #6b7280;
}

/* Headings */
.auth-title { font-size: 44px; margin: 8px 0 8px; font-weight: 800; color: #0f172a; }
.auth-sub { color: #6b7280; margin-bottom: 30px; }

/* Form */
.auth-form { max-width: 520px; margin: 0 auto; text-align: left; }
.form-label { display: block; margin-bottom: 8px; color: #374151; font-size: .95rem; font-weight: 600; }

.form-control {
  width: 100%;
  padding: 16px 20px;
  border-radius: 40px;
  border: none;
  background: #f3f4f6;
  margin-bottom: 14px;
  font-size: 14px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.form-control:focus { box-shadow: 0 0 0 4px rgba(59,130,246,0.08); }

.form-error { color: #b91c1c; font-size: 13px; margin-top: -10px; margin-bottom: 10px; }

.auth-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  color: #6b7280;
}

.checkbox-inline input { margin-right: 8px; }

.btn {
  display: inline-block;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(90deg, #0ea5e9 0%, #0369a1 100%);
  color: #fff;
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 700;
  width: 100%;
  box-shadow: 0 10px 28px rgba(3,105,161,0.14);
  font-size: 16px;
}
.btn-primary:hover{background: linear-gradient(90deg, #17db79 0%, #0a5 100%);}
.auth-links { text-align: center; margin-top: 18px; }
.auth-links a { color: #2563eb; text-decoration: underline; font-weight: 600; }

.link-reset { font-size: .9rem; color: #6b7280; text-decoration: none; }
.link-reset:hover { text-decoration: underline; color: #2563eb; }

/* Responsive */
@media (max-width: 640px) {
  .auth-card { padding: 28px 20px; }
  .auth-title { font-size: 36px; }
  .logo-initial { width: 48px; height: 48px; font-size: 18px; }
}
