input {
    overflow: visible;
    line-height: 1.15;
  margin: 0;
}

[type="checkbox"] {
    box-sizing: border-box;
    padding: 0;
}

.tooltip {
    cursor: pointer;
    display: inline-block;
    position: relative;
  }

  /* Auth */
  .auth-layout {
    color: rgb(13, 29, 41);
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    min-height: 100vh;
    position: relative;
    width: 100%;
  }

.auth-layout__content {
    display: flex;
    flex: 1 1;
    justify-content: center;
}

.register__form {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
  }

  .auth-layout h1 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 0;
  }

  .auth-layout__form-group {
    margin-bottom: 20px;
  }

  .auth-layout__form-group label {
    color: rgb(128, 139, 147);
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .form-control {
    position: relative;
  }

  .form-control input {
    color: rgb(23,45,62);
    border: 1px solid rgb(23,45,62);
    /* border: 1px solid transparent; */
    border-radius: 4px;
    background: rgb(255,255,255);
    font-size: 16px;
    height: 40px;
    padding: 0 35px 0 14px;
    width: 100%;
  }

  .form-control.has-error input {
    border: 1px solid rgb(228, 65, 78);
    border-radius: 4px;
    outline: none;
  }

  .form-control .tooltip {
    width: 100%;
  }

  .form-control .icon {
    cursor: pointer;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
  }

  .form-control.suggest {
    background: rgb(23,45,62);
    border-radius: 4px;
    position: relative;
  }

  .form-control.suggest input {
    background: transparent;
    box-shadow: none;
  }

  .register .register__marketing {
    margin-top: 20px;
  }

  .collapse-box {
    background-color: rgb(255, 255, 255);
    border-radius: 4px;
    color: rgb(150, 155, 158);
    padding: 14px;
  }

  .collapse-box .collapse-box-title {
    display: flex;
    justify-content: space-between;
  }

  .collapse-box .collapse-box-title > div {
    display: flex;
    gap: 5px;
  }

  .register__form input[type="checkbox"] {
    margin-right: 8px;
  }

  .custom-checkbox input {
    cursor: pointer;
    height: 0;
    opacity: 0;
    position: absolute;
    width: 0;
  }

  .custom-checkbox label {
    align-items: center;
    cursor: pointer;
    display: flex;
  }

  .collapse-box .collapse-box-title span {
    cursor: pointer;
  }

  .custom-checkbox .checkmark {
    background-color: rgb(23, 45, 62);
    border-radius: 5px;
    display: inline-block;
    flex-shrink: 0;
    height: 18px;
    margin-right: 5px;
    width: 18px;
  }

  .link-btn {
    background: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    display: inline;
    font: inherit;
    height: auto;
    line-height: normal;
    margin: 0;
    padding: 0;
  }

  .register__term {
    color: rgb(150, 155, 158);
    font-size: 12px;
    line-height: 17px;
    margin-top: 20px;
    word-spacing: 2px;
  }

  .register__next button {
    margin-top: 20px;
    width: 100%;
  }

@media screen and (min-width: 900px) {
    .auth-layout {
        padding: 30px;
      }

    .auth-layout__content {
      min-height: calc(100% - max(15vh,120px));
      padding-bottom: 30px;
      position: absolute;
      top: max(15vh,120px);
      width: calc(100% - 60px);
    }

    .auth-layout__content-inner {
        width: 400px;
      }

      .register__form {
        margin-bottom: 20px;
      }
}

@media screen and (max-width: 899px) {
  .auth-layout {
    margin-top: 7rem;
  }
}