.login_form_wrap {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #00281E;
}

.login_form_box,
.password_recovery_box,
.success_modal_box {
  background: #fff;
  padding: 20px;
  max-width: 480px;
  width: 100%;
}

.login_logo {
  max-width: 180px;
  width: fit-content;
  margin: 0 auto;
}

.login_logo svg {
  width: 100%;
}

.login_form_title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--gray-dark);
  margin: 30px 0px 16px 0px;
}

.login_form-field {
  display: flex;
  flex-direction: column;
}

.login_form-field label {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  line-height: 123%;
  color: var(--gray-medium);
  padding-left: 16px;
}

.login_form_input {
  position: relative;
  margin-top: 4px;
}

.login_form-field input {
  border: 1px solid var(--gray-border);
  padding: 4px 50px 4px 16px;
  background-color: #fff;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 171%;
  color: var(--gray-dark);
  outline: none;
  transition: all 0.3s ease 0s;
  width: 100%;
}

.login_form-field input:focus {
  border-color: var(--yellow-hover);
}

.password-control {
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  margin: auto;
  height: 24px;
  width: 24px;
}

.login_form-field {
  margin-top: 16px;
}

.login_form-field:first-child {
  margin-top: 0;
}

.login_form_buttons {
  display: flex;
  flex-direction: column;
}

.form__remind-password-link {
  text-align: right;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  line-height: 117%;
  color: var(--green-dark);
  text-decoration: none;
  margin-top: 16px;
}

.form_button {
  background: var(--green-main);
  border: none;
  width: 100%;
  padding: 10px 24px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 143%;
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
  margin-top: 31px;
  cursor: pointer;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px white inset !important; /* Установка фона в цвет, который вы хотите */
  -webkit-text-fill-color: black !important; /* Установка цвета текста */
}

.password_recovery_box-prev {
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: var(--green-dark);
}

.password_recovery-prev {
  height: 40px;
  cursor: pointer;
}

.password_recovery_form .form_error_notify {
  text-align: left;
}

.password_recovery_desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 171%;
  color: var(--gray-dark);
  margin-top: 16px;
}

.password_recovery_desc p {
  margin: 0;
}

.password_recovery_form {
  margin-top: 16px;
}

.form_button.loading_active {
  opacity: .65;
  pointer-events: none;
}

.login_form-fields .form_error_notify {
  text-align: left;
}