.import-custom-dialog .modal-header {
  display: flex;
  justify-content: flex-start;

}

.import-custom-dialog .close {
  display: none;
}

.login-page {
  display: flex;
  align-items: center;
  justify-content: center;



  .content {
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 16px;

    .login-form {
      margin-top: 140px;
      border-radius: 10px;
      padding: 60px;
      background: #fff;
      max-width: 580px;
      width: 100%;
      box-shadow: 0 0 10px #ddd;

      input:-webkit-autofill {
        box-shadow: 0 0 0 30px white inset;
        -webkit-box-shadow: 0 0 0 30px white inset;
      }
    }
  }

  &:after {
    content: '';
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 50%;
    right: 0;
  }

  &:before {
    content: '';
    background: #f6a13a;
    position: absolute;
    top: 50%;
    left: 0;
    bottom: 0;
    right: 0;
  }

}