.selectUserForm {
  width: 288px;
  height: 398px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  backdrop-filter: blur(50px);
  padding: 24px;
  box-sizing: border-box;
  position: relative;
  .title {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: #ffffff;
  }

  .tab {
    margin-top: 16px;
    overflow-y: auto;
    width: 245px;
    height: 178px;
    .itemBox {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 240px;
      height: 60px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 12px;
      padding: 8px 16px;
      box-sizing: border-box;
      margin-bottom: 8px;
      .img {
        width: 20px;
        height: 20px;
        display: none;
        background: url("../images/home/success-icon-white.png") no-repeat;
        background-size: cover;
      }
    }

    .item {
      .userName {
        font-weight: 500;
        color: #ffffff;
        font-size: 16px;
        line-height: 22px;
        max-width: 180px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }

      p {
        font-size: 14px;
        color: #ffffff;
      }
    }

    .activeUser {
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid #ffffff;
      .img {
        display: block;
      }
    }
  }
  .logoBtn {
    height: 152px;
    background: rgba(255, 255, 255, 0);
    border-radius: 0px 0px 12px 12px;
    backdrop-filter: blur(50px);
    position: fixed;
    bottom: 0;
    right: 0;
    width: 288px;
    text-align: center;
    padding: 24px 0 0 0;
    box-sizing: border-box;
  }
  .select-user-btn {
    width: 240px;
    height: 48px;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    line-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin: auto;
    cursor: pointer;
  }
  .select-user-login {
    background: rgba(255, 255, 255, 0.3);
  }
  .select-user-cancel {
    background: rgba(255, 255, 255, 0.1);
    margin-top: 8px;
  }
}
