.customers-forgot-password-section .field__input {opacity: 1;}
.customers-forgot-password-section .button--link{color: #000;
    text-decoration: none !important;
    background: transparent;}
.button:not([disabled], .button--icon):hover,
.shopline-element-buy-now:hover{
    background-color: transparent;
}
.customers-forgot-password-section {
display: block;
    max-width: 550px;
    padding-block: 0;
    margin: 0 0 0 auto;
    width: 100%;
    background: #fff;
    padding: 30px;
}
form#ResetPasswordForm {
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    max-width: 1280px;
    padding: 80px 0;
}
.customers-forgot-password__title {
  margin-block-end: 10px;
}
.customers-forgot-password__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 40px;
}
.customers-forgot-password__tab ol {
  display: flex;
  align-items: center;
}
.customers-forgot-password__tab ol > li {
  --underline-size: 2px;

  position: relative;
}
.customers-forgot-password__tab ol > li::after {
  position: absolute;
  inset-block-end: calc(var(--nav-menu-item-padding-block) * -1);
  display: block;
  width: 0;
  height: var(--underline-size);
  pointer-events: none;
  content: "";
  background-color: rgb(var(--color-text));
  transition: width 200ms ease-in;
}
.customers-forgot-password__tab ol > li:hover::after,
.customers-forgot-password__tab ol > li.active::after {
  width: 100%;
}
.customers-forgot-password__tab ol > li > a {
  line-height: 1.6;
  cursor: pointer;
  user-select: none;
}
.customers-forgot-password__tab-divide {
  display: inline-block;
  width: 1px;
  height: 10px;
  margin-inline: 20px;
  background-color: rgba(var(--color-entry-line), 1);
}
.customers-forgot-password__tab-divide::after {
  content: "";
}
.customers-forgot-password__shown-in-email,
.customers-forgot-password__shown-in-mobile {
  display: none;
}
.customers-forgot-password-section.mobile
  .customers-forgot-password__shown-in-mobile,
.customers-forgot-password-section.email
  .customers-forgot-password__shown-in-email {
  display: flex;
}
.customers-forgot-password__error-message {
  color: rgb(227 38 25 / 100%);
}
.customers-forgot-password__submit {
  margin-block-end: 40px;
}