:root {
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
  background: #eef3f8;
  color: #14223a;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(135deg, rgba(4, 82, 156, 0.08), transparent 48%),
    #eef3f8;
}

a {
  color: #086ed6;
}

.recovery-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 36px 18px;
}

.recovery-panel {
  width: min(100%, 520px);
  padding: 32px 36px 28px;
  border: 1px solid #d8e0ea;
  border-top: 5px solid #0879e8;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(23, 48, 75, 0.14);
}

.recovery-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.recovery-brand img {
  display: block;
  width: 178px;
  max-width: 100%;
  height: auto;
}

.recovery-panel__heading {
  margin-top: 28px;
}

.recovery-panel h1 {
  margin: 0;
  color: #083766;
  font-size: 29px;
  line-height: 1.2;
  letter-spacing: 0;
}

.recovery-panel__heading p {
  margin: 10px 0 0;
  color: #58667a;
  font-size: 15px;
  line-height: 1.55;
}

.recovery-alert {
  margin-top: 22px;
  padding: 14px 15px;
  border: 1px solid;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.55;
}

.recovery-alert--success {
  border-color: #add7bf;
  background: #eef9f2;
  color: #1e6840;
}

.recovery-alert--error {
  border-color: #e6b5ba;
  background: #fff3f4;
  color: #9a2732;
}

.recovery-form {
  margin-top: 24px;
}

.recovery-form label {
  display: block;
  margin-bottom: 7px;
  color: #202c40;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.recovery-form .recovery-form__next-label {
  margin-top: 18px;
}

.recovery-form input {
  display: block;
  width: 100%;
  height: 50px;
  padding: 12px 14px;
  border: 1px solid #c6d1df;
  border-radius: 6px;
  background: #ffffff;
  color: #17233a;
  font: inherit;
  font-size: 16px;
  line-height: 24px;
}

.recovery-form input:focus {
  border-color: #0879e8;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(8, 121, 232, 0.14);
}

.recovery-form input::placeholder {
  color: #8995a6;
  opacity: 1;
}

.recovery-form__hint {
  margin: 8px 0 18px;
  color: #68768a;
  font-size: 12px;
  line-height: 1.5;
}

.recovery-form .cf-turnstile {
  min-height: 65px;
}

.recovery-form button {
  display: inline-flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 12px 20px;
  border: 1px solid #0879e8;
  border-radius: 6px;
  background: #0879e8;
  color: #ffffff;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
}

.recovery-form button:hover,
.recovery-form button:focus {
  border-color: #005fcf;
  background: #005fcf;
  outline: 0;
}

.recovery-primary-action {
  margin-top: 24px;
}

.recovery-primary-action a {
  display: inline-flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid #0879e8;
  border-radius: 6px;
  background: #0879e8;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
}

.recovery-primary-action a:hover,
.recovery-primary-action a:focus {
  border-color: #005fcf;
  background: #005fcf;
  outline: 0;
}

.recovery-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
  color: #637187;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.recovery-footer a {
  text-underline-offset: 2px;
}

@media (max-width: 575px) {
  .recovery-page {
    align-items: start;
    padding: 12px;
  }

  .recovery-panel {
    padding: 25px 22px 23px;
  }

  .recovery-brand img {
    width: 154px;
  }

  .recovery-panel__heading {
    margin-top: 23px;
  }

  .recovery-panel h1 {
    font-size: 25px;
  }
}
