/* -----------------------------------------------------------
   Login page — matches requested layout (no colors from sample)
   Uses neutral grays + your brand primary for the button.
   ----------------------------------------------------------- */

/* Card container */
.login-card{
  max-width: 480px;
  margin: 56px auto;
  padding: 28px 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
}

/* Heading */
.auth-title{
  text-align:center;
  font-weight:800;
  font-size:28px;
  color:#111827;
  margin:0 0 18px;
}

/* Error region */
.auth-error{
  min-height:18px;
  color:#b91c1c;
  margin-bottom:10px;
}

/* Fields */
.form-group{ margin-bottom:16px; }
.label-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
}
label{ font-weight:600; color:#374151; font-size:14.5px; }
.micro-link{
  font-size:14px;
  text-decoration:none;
  color:#4b5563;             /* neutral; not the sample color */
}
.micro-link:hover{ text-decoration:underline; }

input[type="text"], input[type="password"]{
  width:100%;
  margin-top:6px;
  padding:12px 14px;
  font-size:16px;
  border:1px solid #e5e7eb;
  border-radius:12px;         /* same rounded corners as sample */
  background:#f9fafb;
}
input:focus{
  outline:none;
  border-color:#2563eb;       /* your primary; adjust if you have a CSS var */
  box-shadow:0 0 0 3px rgba(37,99,235,.15);
}

/* Remember device row */
.remember-row{ margin:8px 0 16px; }
.checkbox{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#374151;
  font-size:14.5px;
}
.checkbox input[type="checkbox"]{
  width:20px; height:20px; border-radius:4px;
}
.help{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:18px; height:18px;
  border-radius:50%;
  border:1px solid #9ca3af;
  color:#6b7280;
  font-size:12px; line-height:1;
  cursor:help;
}

/* Primary pill button */
.btn-pill{
  width:100%;
  padding:14px 20px;
  border:0;
  border-radius:9999px;       /* pill shape like the sample */
  background:#2563eb;         /* brand primary (not sample teal) */
  color:#fff;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  transition:transform .02s ease, background .15s ease;
}
.btn-pill:hover{ background:#1d4ed8; }
.btn-pill:active{ transform:translateY(1px); }
.btn-pill:disabled{ opacity:.6; cursor:not-allowed; }

/* Secondary actions row */
.secondary-actions{
  margin-top:16px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  color:#6b7280;
  text-align:center;
  flex-wrap:wrap;
}
.secondary-actions .link{
  color:#6d28d9;              /* subtle indigo used in your site */
  text-decoration:none;
}
.secondary-actions .link:hover{ text-decoration:underline; }
.secondary-actions .sep{ color:#9ca3af; }

/* Mobile */
@media (max-width:480px){
  .login-card{ margin:40px 12px; padding:24px 16px; }
}

/* Show/Hide password affordance */
.pwd-wrap { position: relative; }
.pwd-wrap input[type="password"], .pwd-wrap input[type="text"] { padding-right: 132px; }
.pwd-toggle-text {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  font-size: 14px; color: #6b7280; cursor: pointer; user-select: none;
}
.pwd-toggle-text:hover, .pwd-toggle-text:focus { color: #2563eb; text-decoration: underline; outline: none; }
