.user-password-page {
  min-height: 60vh;
}

.user-password-title-row {
  margin-bottom: 24px;
}

.user-password-title-row h1 {
  margin: 0 0 7px;
  font-family: Roboto, sans-serif;
  font-weight: 700;
}

.user-password-title-row p {
  margin: 0;
}

.user-password-account-strip .user-button {
  margin-left: auto;
}

.user-password-layout {
  max-width: 820px;
  margin: 0 auto;
}

.user-password-form {
  display: grid;
  gap: 18px;
}

.user-password-card {
  width: 100%;
}

.user-password-fields {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.user-password-field {
  max-width: 570px;
}

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

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

.user-password-toggle {
  position: absolute;
  top: 1px;
  right: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 42px;
  padding: 0;
  border: 0;
  color: #777d80;
  background: transparent;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease;
}

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

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

.user-password-toggle .eye-closed {
  display: none;
}

.user-password-toggle[aria-pressed="true"] .eye-open {
  display: none;
}

.user-password-toggle[aria-pressed="true"] .eye-closed {
  display: block;
}

.user-password-divider {
  width: 100%;
  height: 1px;
  margin: 2px 0;
  background: #eceeef;
}

.user-password-field input.is-invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, .08);
}

.user-password-error {
  min-height: 0;
  color: #b33126 !important;
}

.user-password-error:not(:empty) {
  margin-top: 6px;
}

.user-password-note {
  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-password-note > 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-password-note p {
  margin: 0;
}

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

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

.user-password-feedback {
  margin: 0;
}

.user-password-actions {
  margin-top: 0;
}

@media (max-width: 767px) {
  .user-password-title-row {
    margin-bottom: 18px;
  }

  .user-password-account-strip .user-button {
    width: 100%;
    margin-left: 66px;
  }

  .user-password-fields {
    padding: 19px 17px;
  }

  .user-password-field {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .user-password-account-strip .user-button {
    margin-left: 0;
  }
}
