/* ===== Login: hero ===== */
.login-hero {
  background: #f6f7fb;
  display: flex; align-items: center;
  min-height: 46vh;
  justify-content: center;
}
.login-hero .hero-title { margin-bottom: 10px; }
.login-hero .hero-sub {
  color: #3a3b3e;
  font-size: clamp(16px, 2.1vw, 20px);
  font-weight: 600;
  max-width: 820px;
  margin: 0 auto;
}

/* Center hero text on Login page */
.login-hero .hero-title,
.login-hero .hero-sub { text-align: center; }

/* ===== Login: form card ===== */
.login-wrap { background: #f6f7fb; padding: 0 0 72px; }

.auth-card {
  background: #fff;
  border: 1px solid #e9edf4;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(22, 26, 33, 0.06);
  padding: 28px;
  max-width: 640px;
  margin: 0 auto;
}
.auth-title {
  margin: 2px 0 12px;
  font-weight: 900;
  font-size: 22px;
  color: #0b0c0e;
}
.auth-form { display: grid; gap: 16px; }

.auth-form .field label {
  display: block;
  font-weight: 800;
  color: #0b0c0e;
  margin: 0 0 8px;
  font-size: 14px;
}
.auth-form .field input {
  width: 100%;
  height: 56px;
  border-radius: 12px;
  border: 1px solid #e2e6ee;
  padding: 0 14px;
  font-size: 16px;
  color: #111214;
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.auth-form .field input::placeholder { color: #b1b6bf; }
.auth-form .field input:focus {
  border-color: #b9c7ff;
  box-shadow: 0 0 0 4px rgba(47,106,243,0.12);
}

.auth-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 2px;
}
.chk { display: inline-flex; align-items: center; gap: 8px; color: #3a3b3e; font-weight: 600; }
.chk input { width: 18px; height: 18px; }

.link { color: #2f6af3; text-decoration: none; font-weight: 800; }
.link:hover { text-decoration: underline; }

.alt {
  text-align: center;
  color: #5b6168;
  font-weight: 600;
  margin: 8px 0 0;
}

/* reuse existing buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; font-weight: 800; border-radius: 12px; border: 1px solid transparent; padding: 16px 20px; cursor: pointer; }
.btn-primary { background: #2f6af3; color: #fff; }
.btn-block { width: 100%; height: 56px; font-size: 18px; }

/* Responsive */
@media (max-width: 640px) {
  .auth-card { padding: 22px 18px; }
}
