/* CCH Login v1.5.1 - Dark Tech Design */
html, body { min-height: 100%; }
body.cch-login-page {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  box-sizing: border-box;
  color: #e5f6ff;
  background:
    radial-gradient(circle at 18% 12%, rgba(56,189,248,.18), transparent 34rem),
    radial-gradient(circle at 82% 16%, rgba(34,197,94,.12), transparent 28rem),
    linear-gradient(180deg, #07111f 0%, #0b1220 55%, #050816 100%);
  overflow-x: hidden;
}
.login-shell {
  width: min(480px, 100%);
  border: 1px solid rgba(79,209,255,.18);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(15,24,36,.94), rgba(9,17,27,.98));
  box-shadow: 0 28px 90px rgba(0,0,0,.46), inset 0 1px 0 rgba(255,255,255,.04);
  backdrop-filter: blur(20px);
  padding: 28px;
  box-sizing: border-box;
}
.login-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.login-logo-wrap {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(79,209,255,.18);
  box-shadow: 0 16px 34px rgba(14,165,233,.16);
  overflow: hidden;
  flex: 0 0 auto;
}
.login-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
}
.login-kicker {
  margin: 0 0 4px;
  color: #8fe6ff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}
h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 5vw, 38px);
  letter-spacing: -.05em;
  line-height: 1;
}
.login-copy {
  margin: 0 0 22px;
  color: #9fb2c7;
  font-size: 14px;
  line-height: 1.5;
}
.field { margin-top: 14px; }
label {
  display: block;
  margin-bottom: 7px;
  color: #b6c7da;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
input {
  width: 100%;
  min-height: 48px;
  box-sizing: border-box;
  border: 1px solid rgba(148,163,184,.28);
  border-radius: 16px;
  background: rgba(2,6,23,.42);
  color: #f8fafc;
  padding: 12px 14px;
  font: inherit;
  outline: none;
}
input:focus {
  border-color: rgba(34,211,238,.66);
  box-shadow: 0 0 0 4px rgba(34,211,238,.13);
}
button {
  width: 100%;
  min-height: 48px;
  margin-top: 20px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #22d3ee, #14b8a6);
  color: #03111b;
  font-size: 15px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(20,184,166,.18);
}
button:hover { transform: translateY(-1px); }
button:disabled { opacity: .62; cursor: not-allowed; transform: none; }
.status {
  min-height: 22px;
  margin-top: 14px;
  color: #fecaca;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
}
.status.ok { color: #bbf7d0; }
.hint {
  margin-top: 18px;
  border: 1px solid rgba(79,209,255,.12);
  border-radius: 18px;
  padding: 12px 14px;
  background: rgba(79,209,255,.06);
  color: #8fa3b8;
  font-size: 12px;
  line-height: 1.45;
}
@media (max-width: 560px) {
  body.cch-login-page { padding: 14px; }
  .login-shell { padding: 22px; border-radius: 24px; }
  .login-brand { align-items: flex-start; }
  .login-logo-wrap { width: 60px; height: 60px; border-radius: 20px; }
  .login-logo { width: 46px; height: 46px; }
}
