/**
 * @file
 * London Theme — user/auth page styling (login, password reset, register).
 *
 * Brand-neutral, clean auth card used by page--user.html.twig. The surrounding
 * brand header/footer carry brand identity; this keeps the form tidy and
 * readable across all three brands.
 */

/* Arc nav is built for a navy hero backdrop — recreate it on the auth page. */
.london-auth-head--arc {
  background: radial-gradient(130% 130% at 82% -10%, #2160d8 0%, #1844a6 34%, #0a2a6b 66%, #06173d 100%);
}

.london-auth {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 52vh;
  padding: 64px 20px 88px;
  background: #f4f6f9;
}

.london-auth__card {
  width: 100%;
  max-width: 440px;
  background: #fff;
  border: 1px solid #e7ebf0;
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 24px 60px -28px rgba(17, 22, 31, .45);
}

.london-auth__messages { margin-bottom: 18px; }

/* Page title ("Log in", etc.) */
.london-auth__card h1,
.london-auth__card .page-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #11161f;
  margin: 0 0 6px;
}

/* Local tabs (Log in / Create account / Reset password) */
.london-auth__card .tabs,
.london-auth__card nav.tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  border-bottom: 1px solid #eceff3;
}
.london-auth__card .tabs > li { margin: 0; }
.london-auth__card .tabs a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.london-auth__card .tabs a.is-active,
.london-auth__card .tabs a:hover { color: #11161f; border-bottom-color: #11161f; }

/* Form items */
.london-auth__card .form-item { margin: 0 0 18px; }
.london-auth__card label {
  display: block;
  font-size: 14px;
  font-weight: 650;
  color: #2b313c;
  margin-bottom: 7px;
}
.london-auth__card label .form-required { color: #d23b3b; }

.london-auth__card input[type="text"],
.london-auth__card input[type="email"],
.london-auth__card input[type="password"],
.london-auth__card input[type="tel"] {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  font-size: 15px;
  color: #11161f;
  background: #fff;
  border: 1.5px solid #d7dde5;
  border-radius: 10px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.london-auth__card input[type="text"]:focus,
.london-auth__card input[type="email"]:focus,
.london-auth__card input[type="password"]:focus,
.london-auth__card input[type="tel"]:focus {
  outline: none;
  border-color: #11161f;
  box-shadow: 0 0 0 3px rgba(17, 22, 31, .08);
}

.london-auth__card .description {
  font-size: 12.5px;
  color: #8a93a1;
  margin-top: 6px;
  line-height: 1.5;
}

/* Submit / actions */
.london-auth__card .form-actions { margin-top: 26px; }
.london-auth__card .button,
.london-auth__card input[type="submit"] {
  display: inline-block;
  width: 100%;
  padding: 13px 18px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: #11161f;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background .15s ease, transform .05s ease;
}
.london-auth__card .button:hover,
.london-auth__card input[type="submit"]:hover { background: #2b313c; }
.london-auth__card .button:active,
.london-auth__card input[type="submit"]:active { transform: translateY(1px); }

/* Helper links under the form (reset password etc.) */
.london-auth__card a { color: #1f2937; }

/* Brand accent on focus + button to match each site. */
.london-auth--arc .london-auth__card input:focus { border-color: #1d4ed8; box-shadow: 0 0 0 3px rgba(29,78,216,.12); }
.london-auth--arc .london-auth__card .button,
.london-auth--arc .london-auth__card input[type="submit"] { background: #1d4ed8; }
.london-auth--arc .london-auth__card .button:hover { background: #1a43bd; }
.london-auth--arc .london-auth__card .tabs a.is-active { border-bottom-color: #1d4ed8; color: #1d4ed8; }

.london-auth--svc .london-auth__card input:focus { border-color: #8a5a2b; box-shadow: 0 0 0 3px rgba(138,90,43,.12); }
.london-auth--svc .london-auth__card .button,
.london-auth--svc .london-auth__card input[type="submit"] { background: #5a7d3c; }
.london-auth--svc .london-auth__card .button:hover { background: #4c6a33; }
.london-auth--svc .london-auth__card .tabs a.is-active { border-bottom-color: #5a7d3c; color: #5a7d3c; }
