
.login-popup {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    font-family: inherit;
  }

  .login-popup--open {
    display: flex;
  }

  .login-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
  }

  .login-popup__dialog {
    position: relative;
    max-width: 420px;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    padding: 24px 24px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 1;
  }

  .login-popup__title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 600;
  }

  .login-popup__text {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.5;
  }

  .login-popup__actions {
    display: flex;
    justify-content: flex-end;
  }

  .login-popup__btn-close {
    cursor: pointer;
  }

  .login-popup__close {
    position: absolute;
    top: 8px;
    right: 10px;
    border: none;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
  }
    .open-account-popup {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    font-family: inherit;
  }

  .open-account-popup--open {
    display: flex;
  }

  .open-account-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
  }

  .open-account-popup__dialog {
    position: relative;
    max-width: 480px;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    padding: 24px 24px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 1;
  }

  .open-account-popup__title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 600;
  }

  .open-account-popup__text {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.5;
  }

  .open-account-popup__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
  }

  .open-account-popup__close {
    position: absolute;
    top: 8px;
    right: 10px;
    border: none;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
  }

  /* Подсветка ошибок, дружелюбная к твоему форме-CSS */
  .field.is--error .field__label {
    color: #d42d2d;
  }

  .field.is--error .input,
  .field.is--error textarea {
    border-color: #d42d2d;
  }

  .field .input__helper_text.validation_message {
    display: none;
    font-size: 12px;
    margin-top: 4px;
  }

  .field.is--error .input__helper_text.validation_message {
    display: inline-block;
    background: #fff5f5;
    border: 1px solid #d42d2d;
    color: #d42d2d;
    padding: 2px 6px;
  }