:root {
  color-scheme: light;
  font-family:
    Inter,
    Aptos,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  color: #172a35;
  background: #f4f6f5;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
header,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1160px, 90%);
  margin: 0 auto;
}
header {
  padding: 32px 0;
  border-bottom: 1px solid #dce2e3;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  font-weight: 650;
  font-size: 20px;
}
.brand-mark {
  padding: 9px 10px;
  border-radius: 10px;
  background: #172a35;
  color: #fa956b;
  font-size: 22px;
}
.track-label,
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 700;
}
.track-label {
  color: #607079;
}
main {
  width: min(1100px, 90%);
  margin: auto;
  padding: 72px 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(36px, 7vw, 100px);
  align-items: center;
}
.introduction .eyebrow {
  color: #a54d28;
  margin: 0 0 24px;
}
h1 {
  font-size: clamp(44px, 5.8vw, 70px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 580;
  margin: 0 0 26px;
}
p {
  line-height: 1.65;
}
.intro {
  font-size: 18px;
  color: #52636c;
  max-width: 430px;
}
.features {
  display: flex;
  gap: 32px;
  list-style: none;
  padding: 28px 0;
  margin: 28px 0;
  border-block: 1px solid #dce2e3;
}
.features li {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.features strong {
  font-size: 32px;
  font-weight: 580;
  letter-spacing: -0.03em;
}
.features span,
.independent {
  font-size: 12px;
  color: #607079;
}
.independent {
  max-width: 370px;
}
.sign-in {
  background: white;
  border: 1px solid #dce2e3;
  border-radius: 20px;
  padding: clamp(24px, 3.5vw, 40px);
  box-shadow: 0 16px 48px #172a3508;
}
.sign-in .eyebrow {
  color: #607079;
}
h2 {
  font-size: 32px;
  letter-spacing: -0.035em;
  font-weight: 580;
  margin: 16px 0 12px;
}
.sign-in > p {
  color: #607079;
  font-size: 14px;
  margin: 0 0 26px;
}
label {
  display: block;
  font-size: 13px;
  font-weight: 650;
  margin: 22px 0 9px;
}
input,
button {
  font: inherit;
}
input {
  width: 100%;
  min-width: 0;
  border: 1px solid #b8c4c8;
  border-radius: 8px;
  background: #fff;
  color: #172a35;
  padding: 13px 14px;
  font-size: 16px;
}
input:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 3px solid #377c9b;
  outline-offset: 3px;
}
small {
  display: block;
  font-size: 11px;
  color: #607079;
  margin-top: 8px;
  line-height: 1.5;
}
.password-field {
  display: flex;
  position: relative;
  align-items: center;
}
.password-field input {
  padding-right: 66px;
}
.password-field button {
  position: absolute;
  right: 4px;
  border: 0;
  background: none;
  color: #52636c;
  padding: 12px;
  font-size: 12px;
  cursor: pointer;
}
#access-message {
  min-height: 24px;
  margin: 16px 0;
  font-size: 13px;
  color: #a43c34;
}
.enter {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  border: 0;
  border-radius: 9px;
  padding: 16px 18px;
  background: #172a35;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.enter:hover {
  background: #28424f;
}
.enter:disabled {
  opacity: 0.6;
  cursor: wait;
}
.enter span {
  color: #fa956b;
}
.sign-in .local-note {
  font-size: 11px;
  line-height: 1.65;
  margin: 22px 0 0;
}
footer {
  border-top: 1px solid #dce2e3;
  padding: 22px 0;
  color: #607079;
  font-size: 11px;
}
@media (max-width: 740px) {
  main {
    grid-template-columns: 1fr;
    padding: 36px 0;
    gap: 30px;
    max-width: 480px;
  }
  h1 {
    font-size: 46px;
  }
  .intro {
    font-size: 16px;
  }
  .features {
    padding: 18px 0;
    margin: 22px 0;
    justify-content: space-between;
    gap: 12px;
  }
  .features strong {
    font-size: 26px;
  }
  .introduction .eyebrow {
    font-size: 10px;
  }
  header {
    padding: 20px 0;
  }
  .track-label {
    font-size: 9px;
    max-width: 110px;
    text-align: right;
    line-height: 1.5;
  }
  footer {
    flex-wrap: wrap;
    gap: 8px;
  }
}
