.login-register-block__tabs {
  display: flex;
  align-items: center;
  gap: 40px;
}
.login-register-block__tabs button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  color: #959595;
  padding-block: 6px 8px;
  transition: color 0.3s cubic-bezier(0.3, 0.1, 0.26, 1);
}
@media (min-width: 768px) {
  .login-register-block__tabs button {
    font-size: 30px;
  }
}
.login-register-block__tabs button::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #ff7100;
  transition: width 0.3s cubic-bezier(0.3, 0.1, 0.26, 1);
}
.login-register-block__tabs button.active {
  color: #3f4041;
}
.login-register-block__tabs button.active::before {
  width: 100%;
}
.login-register-block__content_wrap {
  display: none;
}
.login-register-block__content_wrap.active {
  display: block;
}
.login-register-block__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.24;
  color: #3f4041;
  margin-bottom: 24px;
}
.login-register-block__form_fields {
  display: flex;
  flex-direction: column;
}
.login-register-block__form_fields_passwords {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .login-register-block__form_fields_passwords {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.login-register-block__form_footer_buttons {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.login-register-block__form_footer_checkboxes {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.login-register-block__form_footer_checkboxes .checkbox__label {
  font-size: 13px;
  line-height: 1.7;
}
.login-register-block__form_footer_checkboxes .checkbox__label a {
  color: #ff7100;
}
@media (max-width: 768px) {
  .login-register-block__form_footer_checkboxes .checkbox__label::before {
    width: 17px;
    height: 17px;
  }
}
.login-register-block__form_email {
  display: block;
  margin-bottom: 23px;
}
.login-register-block__form_email .form-input {
  padding-bottom: 0;
}
.login-register-block__form_email .form-input__error {
  position: relative;
  left: auto;
  bottom: auto;
}
.login-register-block__form_email_info {
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
  user-select: none;
}
.login-register-block__form_email_info span:nth-child(1) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.login-register-block__form_email_info span:nth-child(1) svg {
  width: 18px;
  height: 18px;
}
.login-register-block__form_email_info span:nth-child(2) {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.24;
  color: #959595;
}
.login-register-block__form_submit {
  max-width: none;
  width: 100%;
}
.login-register-block__form_message.show {
  margin-top: 20px !important;
  margin-bottom: 20px;
}

.button--forgot {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.36;
  color: #ff7100;
}

.form--message {
  display: block;
  white-space: nowrap;
  color: #e0252f;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.24;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.3, 0.1, 0.26, 1), visibility 0.3s cubic-bezier(0.3, 0.1, 0.26, 1), margin 0.3s cubic-bezier(0.3, 0.1, 0.26, 1), max-height 0.3s cubic-bezier(0.3, 0.1, 0.26, 1);
}
.form--message.show {
  margin-top: 15px;
  max-height: 25px;
  opacity: 1;
  visibility: visible;
}
@media (min-width: 768px) {
  .form--message {
    font-size: 13px;
  }
}