@font-face {
  font-family: "Geist";
  src: url("fonts/geist.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

.login-intro h1 {
  max-width: 850px;
}

.login-layout {
  grid-template-columns: 300px minmax(0, 720px);
  justify-content: center;
}

.account-panel {
  padding-top: 10px;
}

.account-benefits {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.account-benefits li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  align-items: start;
}

.account-benefits li > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 800;
}

.account-benefits strong,
.account-benefits small {
  display: block;
}

.account-benefits strong {
  color: var(--navy);
}

.account-benefits small {
  margin-top: 2px;
  color: var(--muted);
  line-height: 1.4;
}

.login-card {
  min-height: 0;
}

.login-fields {
  gap: 24px;
}

.password-wrap {
  position: relative;
}

.password-wrap input {
  padding-right: 78px;
}

.password-toggle {
  position: absolute;
  top: 7px;
  right: 7px;
  min-width: 62px;
  min-height: 36px;
  cursor: pointer;
  border: 0;
  border-radius: 7px;
  background: #e9f1f7;
  color: var(--navy);
  font-weight: 750;
}

.password-toggle:hover {
  background: #dceaf4;
}

.login-help-row {
  margin-top: 8px;
}

.login-help-row a {
  font-weight: 720;
}

.login-actions {
  margin-top: 24px;
}

.login-actions .primary-button {
  width: 100%;
}

.login-notice {
  margin-top: 26px;
}

.login-notice p {
  margin: 3px 0 0;
}

.success-notice {
  padding: 17px 19px;
  border: 1px solid #9ccdb4;
  border-left: 5px solid var(--green);
  border-radius: 8px;
  background: #edf8f2;
  color: #125c39;
}

.payment-note {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  max-width: 1120px;
  margin: 44px auto 0;
  padding: 24px 28px;
  border: 1px solid #d6e2eb;
  border-radius: 14px;
  background: #fff;
}

.payment-note > div {
  display: flex;
  align-items: center;
  gap: 15px;
}

.payment-note strong {
  color: var(--navy);
}

.payment-note p {
  margin: 2px 0 0;
  color: var(--muted);
}

.payment-note img {
  max-width: 220px;
  max-height: 76px;
  object-fit: contain;
}

.payment-lock {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--blue);
  font-size: 1.3rem;
}

@media (width <= 820px) {
  .login-layout {
    grid-template-columns: 1fr;
  }

  .account-panel {
    order: 2;
  }

  .privacy-side-note {
    display: flex;
  }
}

@media (width <= 600px) {
  .account-benefits {
    gap: 16px;
  }

  .payment-note {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 28px;
    padding: 20px;
  }
}
