/* Public registration page – v40 */
.user-registration-page {
  min-height: 60vh;
  padding-top: 34px;
}

.user-registration-heading {
  max-width: 760px;
  margin: 0 0 24px;
}

.user-registration-kicker {
  display: block;
  margin-bottom: 5px;
  color: #28a745;
  font: 700 11px/1.4 Roboto, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.user-registration-heading h1 {
  margin: 0 0 7px;
  color: #24282b;
  font: 700 30px/1.2 Roboto, sans-serif;
}

.user-registration-heading p {
  margin: 0;
  color: #757b7e;
  font: 400 13px/1.55 Roboto, sans-serif;
}

.user-registration-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(285px, .75fr);
  align-items: start;
  gap: 22px;
}

.user-registration-card,
.user-registration-benefits,
.user-registration-login {
  background: #fff;
  border: 1px solid #e3e6e8;
}

.user-registration-card {
  min-width: 0;
}

.user-registration-card-heading {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 20px 22px 17px;
  border-top: 3px solid #28a745;
  border-bottom: 1px solid #eceeef;
}

.user-registration-card-icon,
.user-registration-login-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  color: #218838;
  background: #eef8f0;
  border-radius: 50%;
}

.user-registration-card-icon svg,
.user-registration-login-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.user-registration-card-heading h2,
.user-registration-benefits h2,
.user-registration-login h2 {
  margin: 0 0 4px;
  color: #272b2e;
  font: 700 19px/1.3 Roboto, sans-serif;
}

.user-registration-card-heading p,
.user-registration-benefits > p,
.user-registration-login p {
  margin: 0;
  color: #777d80;
  font: 400 13px/1.55 Roboto, sans-serif;
}

.user-registration-form {
  display: grid;
  gap: 20px;
  padding: 22px;
}

.user-registration-field {
  min-width: 0;
}

.user-registration-field label {
  display: block;
  margin-bottom: 7px;
  color: #454b4e;
  font: 500 13px/1.4 Roboto, sans-serif;
}

.user-registration-required {
  color: #c0392b;
}

.user-registration-input-wrap {
  position: relative;
}

.user-registration-input-icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 12px;
  display: flex;
  width: 18px;
  height: 18px;
  color: #8a9093;
  transform: translateY(-50%);
  pointer-events: none;
}

.user-registration-input-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.user-registration-field input {
  width: 100%;
  height: 46px;
  padding: 9px 46px 9px 42px;
  color: #272b2e;
  background: #fff;
  border: 1px solid #d7dbde;
  border-radius: 2px;
  font: 400 14px/1.4 Roboto, sans-serif;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.user-registration-field input:focus {
  outline: 0;
  border-color: #28a745;
  box-shadow: 0 0 0 3px rgba(40,167,69,.10);
}

.user-registration-field.is-valid input {
  border-color: #7bc58b;
  background: #fbfefb;
}

.user-registration-field.is-invalid input {
  border-color: #d98a83;
  background: #fffdfd;
}

.user-registration-field small,
.user-registration-check,
.user-registration-inline-status {
  display: block;
  margin-top: 6px;
  color: #8a8f92;
  font: 400 12px/1.45 Roboto, sans-serif;
}

.user-registration-field-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.user-registration-check {
  flex: 0 0 auto;
  text-align: right;
  font-weight: 500;
}

.user-registration-check.is-loading {
  color: #777d80;
}

.user-registration-check.is-available,
.user-registration-inline-status.is-valid {
  color: #218838;
}

.user-registration-check.is-unavailable,
.user-registration-inline-status.is-invalid {
  color: #b23b31;
}

.user-registration-password-toggle {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 46px;
  color: #777d80;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.user-registration-password-toggle:hover,
.user-registration-password-toggle:focus {
  color: #218838;
  outline: 0;
}

.user-registration-password-toggle svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.user-registration-password-toggle .icon-hide,
.user-registration-password-toggle.is-visible .icon-show {
  display: none;
}

.user-registration-password-toggle.is-visible .icon-hide {
  display: block;
}

.user-registration-password-info {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin-top: 7px;
}

.user-registration-strength {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.user-registration-strength span {
  height: 4px;
  background: #e2e5e6;
  border-radius: 2px;
}

.user-registration-strength.level-1 span:nth-child(1),
.user-registration-strength.level-2 span:nth-child(-n+2),
.user-registration-strength.level-3 span {
  background: #28a745;
}

.user-registration-actions {
  display: flex;
  justify-content: flex-end;
  margin: 2px -22px -22px;
  padding: 18px 22px;
  background: #f7f8f8;
  border-top: 1px solid #e3e6e8;
}

.user-registration-actions .user-button {
  min-width: 154px;
}

.user-registration-feedback {
  display: none;
  margin: 18px 22px 0;
  padding: 13px 15px;
  font: 400 13px/1.5 Roboto, sans-serif;
}

.user-registration-feedback.is-visible {
  display: block;
}

.user-registration-feedback.is-success {
  color: #1f6b31;
  background: #eef8f0;
  border: 1px solid #cfe8d4;
}

.user-registration-feedback.is-error {
  color: #98362e;
  background: #fff5f4;
  border: 1px solid #edcfcc;
}

.user-registration-aside {
  display: grid;
  gap: 18px;
}

.user-registration-benefits {
  padding: 22px;
  border-top: 3px solid #2d3438;
}

.user-registration-benefits ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.user-registration-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 14px 0;
  border-top: 1px solid #eef0f1;
}

.user-registration-benefits li:first-child {
  padding-top: 0;
  border-top: 0;
}

.user-registration-benefits li > span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  margin-top: 1px;
  color: #218838;
  background: #eef8f0;
  border-radius: 50%;
}

.user-registration-benefits li svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.user-registration-benefits strong {
  margin-bottom: 3px;
  color: #343a3d;
  font: 700 13px/1.4 Roboto, sans-serif;
}

.user-registration-benefits small {
  color: #7b8083;
  font: 400 12px/1.5 Roboto, sans-serif;
}

.user-registration-login {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 20px 22px;
}

.user-registration-login h2 {
  font-size: 17px;
}

.user-registration-login a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 11px;
  color: #218838;
  font: 700 13px/1.35 Roboto, sans-serif;
}

.user-registration-login a svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.user-registration-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 991px) {
  .user-registration-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(250px, .75fr);
  }
}

@media (max-width: 767px) {
  .user-registration-page {
    padding-top: 24px;
  }

  .user-registration-heading {
    margin-bottom: 19px;
  }

  .user-registration-heading h1 {
    font-size: 26px;
  }

  .user-registration-layout {
    grid-template-columns: 1fr;
  }

  .user-registration-card-heading,
  .user-registration-form,
  .user-registration-benefits,
  .user-registration-login {
    padding-left: 17px;
    padding-right: 17px;
  }

  .user-registration-actions {
    margin-right: -17px;
    margin-left: -17px;
    padding-right: 17px;
    padding-left: 17px;
  }

  .user-registration-actions .user-button {
    width: 100%;
  }

  .user-registration-aside {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .user-registration-field-meta,
  .user-registration-password-info {
    display: block;
  }

  .user-registration-check {
    text-align: left;
  }

  .user-registration-strength {
    width: 92px;
    margin-bottom: 6px;
  }
}

.user-verification-card {
  align-self: start;
}

.user-verification-form {
  padding-top: 22px;
}

.user-verification-instructions {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 17px;
  color: #4d5558;
  background: #f7f8f8;
  border: 1px solid #e3e6e8;
  font: 400 13px/1.5 Roboto, sans-serif;
}

.user-verification-instructions > svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  color: #218838;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.user-verification-instructions p {
  margin: 0;
}

.user-verification-instructions strong,
.user-verification-instructions span {
  display: block;
}

.user-verification-instructions strong {
  margin-bottom: 2px;
  color: #303538;
  font-weight: 700;
}

.user-verification-field input {
  letter-spacing: 0.08em;
  font-weight: 600;
}
.user-verification-card {
  align-self: start;
}

.user-verification-form {
  padding-top: 22px;
}

.user-verification-instructions {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 17px;
  color: #4d5558;
  background: #f7f8f8;
  border: 1px solid #e3e6e8;
  font: 400 13px/1.5 Roboto, sans-serif;
}

.user-verification-instructions > svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  color: #218838;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.user-verification-instructions p {
  margin: 0;
}

.user-verification-instructions strong,
.user-verification-instructions span {
  display: block;
}

.user-verification-instructions strong {
  margin-bottom: 2px;
  color: #303538;
  font-weight: 700;
}

.user-verification-field input {
  letter-spacing: 0.08em;
  font-weight: 600;
}

.user-lost-card {
  align-self: start;
}

.user-lost-instructions {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 17px;
  color: #4d5558;
  background: #f7f8f8;
  border: 1px solid #e3e6e8;
  font: 400 13px/1.5 Roboto, sans-serif;
}

.user-lost-instructions > svg {
  flex: 0 0 20px;
  margin-top: 1px;
  color: #218838;
}

.user-lost-instructions p {
  margin: 0;
}

.user-lost-instructions strong,
.user-lost-instructions span {
  display: block;
}

.user-lost-instructions strong {
  margin-bottom: 2px;
  color: #303538;
  font-weight: 700;
}
