.password-page {
  box-sizing: border-box;
  width: min(1440px, calc(100% - 48px));
  min-height: 58vh;
  margin: 0 auto;
  padding: 28px 0 76px;
}

.password-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: #687891;
  font-size: 14px;
}

.password-breadcrumb strong {
  color: #344258;
}

.password-card {
  width: min(100%, 620px);
  margin: 34px auto 0;
  padding: 42px;
  border: 1px solid #d6e1ef;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(31, 52, 84, 0.08);
}

.password-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  border-radius: 18px;
  background: #eaf2ff;
  color: #2a66eb;
}

.password-kicker {
  display: block;
  margin-bottom: 6px;
  color: #2a66eb;
  font-size: var(--site-label-size);
  font-weight: var(--site-label-weight);
  letter-spacing: var(--site-label-spacing);
  text-transform: uppercase;
}

.password-card h1 {
  margin: 0;
  color: #172033;
  font-size: clamp(29px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.password-card > p {
  margin: 13px 0 25px;
  color: #596b84;
  font-size: 15px;
  line-height: 1.65;
}

.password-card form {
  display: grid;
  gap: 9px;
}

.password-card label {
  margin-top: 5px;
  color: #52627a;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.password-card input {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1px solid #c9d6e6;
  border-radius: 11px;
  background: #fff;
  color: #172033;
  outline: none;
}

.password-card input:focus {
  border-color: #2a66eb;
  box-shadow: 0 0 0 3px rgba(42, 102, 235, 0.12);
}

.password-primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 50px;
  margin-top: 13px;
  padding: 0 18px;
  border: 0;
  border-radius: 11px;
  background: #527fbe;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.password-primary:hover {
  background: #416da9;
}

.password-message {
  margin: 20px 0;
  padding: 15px 16px;
  border: 1px solid #d6e1ef;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.55;
}

.password-message strong,
.password-message span {
  display: block;
}

.password-message span {
  margin-top: 3px;
}

.password-message.is-success {
  border-color: #b9dfcf;
  background: #f1faf6;
  color: #17664e;
}

.password-message.is-error {
  border-color: #efb4b4;
  background: #fff6f6;
  color: #9f3030;
}

.password-support {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
  color: #687891;
  font-size: 13px;
}

.password-support a {
  color: #2a66eb;
  font-weight: 700;
}

@media (max-width: 700px) {
  .password-page {
    width: calc(100% - 24px);
    padding: 18px 0 52px;
  }

  .password-card {
    margin-top: 18px;
    padding: 28px 20px;
    border-radius: 17px;
  }

  .password-support {
    flex-direction: column;
    gap: 7px;
  }
}
