:root {
  color: #3b3b3b;
  background: #f4f7fb;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
}

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid #0b756f;
  outline-offset: 3px;
}

.login-page {
  display: grid;
  min-height: 100vh;
  padding: 32px 20px;
  place-items: center;
  background:
    radial-gradient(circle at 18% 12%, rgba(45, 189, 177, 0.12), transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(43, 108, 176, 0.14), transparent 34%),
    #f4f7fb;
}

.login-panel {
  width: min(100%, 470px);
  text-align: center;
}

.login-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
  color: #265e9a;
  font-size: clamp(1.05rem, 4vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.login-brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.login-card {
  padding: clamp(32px, 7vw, 50px);
  border: 1px solid rgba(43, 108, 176, 0.12);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(34, 52, 75, 0.12);
}

.login-kicker {
  margin: 0 0 8px;
  color: #2b6cb0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 12px;
  color: #222222;
  font-size: clamp(2rem, 8vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.login-copy {
  margin: 0 auto 28px;
  max-width: 330px;
  color: #626262;
  font-size: 1rem;
  line-height: 1.55;
}

form {
  display: grid;
  gap: 12px;
  text-align: left;
}

label {
  color: #3b3b3b;
  font-size: 0.9rem;
  font-weight: 700;
}

input {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  background: #ffffff;
  color: #222222;
  box-shadow: inset 0 1px 2px rgba(34, 34, 34, 0.04);
}

input:hover {
  border-color: #9aabc0;
}

input:focus {
  border-color: #2b6cb0;
}

button {
  min-height: 54px;
  margin-top: 6px;
  padding: 13px 20px;
  border: 0;
  border-radius: 4px;
  background: #2b6cb0;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(43, 108, 176, 0.22);
}

button:hover {
  background: #265e9a;
}

.login-error {
  margin: 0 0 20px;
  padding: 12px 14px;
  border-left: 4px solid #b42318;
  background: #fff1f0;
  color: #7a271a;
  font-size: 0.92rem;
  text-align: left;
}

.login-footnote {
  max-width: 410px;
  margin: 22px auto 0;
  color: #667085;
  font-size: 0.78rem;
  line-height: 1.55;
}

@media (max-width: 480px) {
  .login-page {
    padding: 22px 14px;
  }

  .login-brand img {
    width: 58px;
    height: 58px;
  }

  .login-card {
    padding: 30px 22px;
  }
}
