@import url("/fonts/ci.css");
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  color: #f4f7fa;
  font:
    15px/1.6 Montserrat,
    system-ui,
    sans-serif;
  background:
    radial-gradient(ellipse at 15% 25%, #20466670, transparent 60%),
    linear-gradient(160deg, #0c141c 10%, #101d29 65%, #1f3447);
  min-height: 100dvh;
}
.login-shell {
  max-width: 1480px;
  margin: auto;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: clamp(40px, 7vw, 120px);
  padding: 80px clamp(32px, 7vw, 110px);
  position: relative;
}
.logo {
  width: 190px;
  max-width: 60%;
  filter: brightness(0) invert(1);
}
h1 {
  font-size: clamp(32px, 4vw, 60px);
  line-height: 1.15;
  letter-spacing: -0.05em;
  font-weight: 600;
  margin: 34px 0 24px;
}
.identity p {
  color: #b7c8d8;
  font-size: 18px;
  line-height: 1.7;
}
h2 {
  font-size: 24px;
  letter-spacing: -0.035em;
  margin: 0 0 10px;
}
.login-panel {
  max-width: 380px;
}
.login-panel > p {
  color: #b7c8d8;
  margin: 0 0 30px;
}
.google-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  background: #fff;
  border: 1px solid #e1e7ed;
  border-radius: 30px;
  color: #18232e;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.15s,
    transform 0.15s;
}
.google-button:hover {
  background: #eaf1f8;
  transform: translateY(-1px);
}
.google-button:focus-visible {
  outline: 3px solid #62afe8;
  outline-offset: 5px;
}
small {
  display: block;
  font-size: 12px;
  color: #8da4b9;
  margin-top: 24px;
}
footer {
  position: absolute;
  bottom: 28px;
  left: clamp(32px, 7vw, 110px);
  font-size: 11px;
  color: #8da4b9;
}
.login-panel .error {
  color: #ffd4c9;
  background: #b4483025;
  border: 1px solid #cf71544a;
  border-radius: 10px;
  padding: 14px;
  margin: 18px 0 0;
}
[hidden] {
  display: none !important;
}
@media (max-width: 850px) {
  .login-shell {
    grid-template-columns: 1fr;
    gap: 44px;
    align-content: center;
    padding: 56px 28px 80px;
  }
  .identity p {
    font-size: 16px;
  }
  .logo {
    width: 155px;
  }
  h1 {
    margin: 28px 0 18px;
  }
  .login-panel {
    max-width: 460px;
  }
  footer {
    left: 28px;
  }
  .login-panel > p {
    margin-bottom: 24px;
  }
}
