.saasmanagermentauth {
  width: 100%;
  padding: 24px;
  background: #ffffff;
  border-radius: 8px;

  &-header {
    margin-bottom: 24px;
  }

  &-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    color: #1a1a1a;
    margin: 0 0 8px 0;
  }

  &-description {
    font-size: 14px;
    line-height: 20px;
    color: #666666;
    margin: 0;
  }

  &-tabs {
    margin-bottom: 24px;

    :global {
      .ant-tabs-nav {
        margin-bottom: 24px;

        &::before {
          border-bottom: 1px solid #e8e8e8;
        }
      }

      .ant-tabs-tab {
        padding: 12px 0;
        font-size: 14px;
        font-weight: 500;
        color: #666666;

        &:hover {
          color: #1890ff;
        }

        &.ant-tabs-tab-active {
          .ant-tabs-tab-btn {
            color: #1890ff;
          }
        }
      }

      .ant-tabs-ink-bar {
        background: #1890ff;
        height: 2px;
      }

      .ant-tabs-content-holder {
        padding: 0;
      }

      .ant-tabs-tabpane {
        padding: 0;
      }
    }
  }

  &-content {
    min-height: 400px;
  }

  &-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e8e8e8;

    .ant-btn {
      min-width: 80px;
      height: 40px;
      font-size: 14px;
      border-radius: 6px;
    }

    .ant-btn-default {
      border-color: #d9d9d9;
      color: #595959;

      &:hover {
        border-color: #1890ff;
        color: #1890ff;
      }
    }

    .ant-btn-primary {
      background: #1890ff;
      border-color: #1890ff;

      &:hover {
        background: #40a9ff;
        border-color: #40a9ff;
      }
    }
  }
}

